mirror of https://github.com/google/benchmark.git
Fixed typo in doc: s/marcro/macro (#1274)
* Fixed typo s/marcro/macro * undo stray NL * abc
This commit is contained in:
parent
329fb06d99
commit
4b99670c57
|
@ -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);
|
||||
|
||||
```
|
||||
|
|
Loading…
Reference in New Issue