From 4b99670c57eb18e10126b5fb322e55f8000fec04 Mon Sep 17 00:00:00 2001 From: Vy Nguyen Date: Mon, 8 Nov 2021 05:04:03 -0500 Subject: [PATCH] Fixed typo in doc: s/marcro/macro (#1274) * Fixed typo s/marcro/macro * undo stray NL * abc --- docs/user_guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user_guide.md b/docs/user_guide.md index 50a11e83..e08ed5b1 100644 --- a/docs/user_guide.md +++ b/docs/user_guide.md @@ -486,7 +486,7 @@ template void BM_Sequential(benchmark::State& state) { // C++03 BENCHMARK_TEMPLATE(BM_Sequential, WaitQueue)->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>)->Range(1<<0, 1<<10); ```