Commit 24b80427 by Andre Schroeder Committed by Eric

Fix Markdown typos in readme. (#445)

parent 886585a3
...@@ -199,11 +199,11 @@ The `test_case_name` is appended to the name of the benchmark and ...@@ -199,11 +199,11 @@ The `test_case_name` is appended to the name of the benchmark and
should describe the values passed. should describe the values passed.
```c++ ```c++
template <class ...ExtraArgs>` template <class ...ExtraArgs>
void BM_takes_args(benchmark::State& state, ExtraArgs&&... extra_args) { void BM_takes_args(benchmark::State& state, ExtraArgs&&... extra_args) {
[...] [...]
} }
// Registers a benchmark named "BM_takes_args/int_string_test` that passes // Registers a benchmark named "BM_takes_args/int_string_test" that passes
// the specified values to `extra_args`. // the specified values to `extra_args`.
BENCHMARK_CAPTURE(BM_takes_args, int_string_test, 42, std::string("abc")); BENCHMARK_CAPTURE(BM_takes_args, int_string_test, 42, std::string("abc"));
``` ```
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment