From df4f9fe36232934eea06d4c22a8619d5eb2dd2e2 Mon Sep 17 00:00:00 2001 From: Jason Cooke Date: Wed, 17 Jul 2019 19:01:07 +1200 Subject: [PATCH] docs: fix typo (#837) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 45e41588..3ab22f90 100644 --- a/README.md +++ b/README.md @@ -849,7 +849,7 @@ BENCHMARK(BM_OpenMP)->Range(8, 8<<10)->MeasureProcessCPUTime()->UseRealTime(); Normally, the entire duration of the work loop (`for (auto _ : state) {}`) is measured. But sometimes, it is necessary to do some work inside of that loop, every iteration, but without counting that time to the benchmark time. -That is possible, althought it is not recommended, since it has high overhead. +That is possible, although it is not recommended, since it has high overhead. ```c++ static void BM_SetInsert_With_Timer_Control(benchmark::State& state) {