Fixed typo in doc: s/marcro/macro (#1274)

* Fixed typo s/marcro/macro

* undo stray NL

* abc
This commit is contained in:
Vy Nguyen 2021-11-08 05:04:03 -05:00 committed by GitHub
parent 329fb06d99
commit 4b99670c57
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -486,7 +486,7 @@ template <class Q> void BM_Sequential(benchmark::State& state) {
// C++03
BENCHMARK_TEMPLATE(BM_Sequential, WaitQueue<int>)->Range(1<<0, 1<<10);
// C++11 or newer, you can use the BENCHMARK marcro with template parameters:
// C++11 or newer, you can use the BENCHMARK macro with template parameters:
BENCHMARK(BM_Sequential<WaitQueue<int>>)->Range(1<<0, 1<<10);
```