From 9e674d49feeb4647c8acc81334188e7c4587a5e9 Mon Sep 17 00:00:00 2001 From: Evgeny Grebenyuk Date: Fri, 6 Aug 2021 19:36:23 +0700 Subject: [PATCH] Fix typo in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 55dd83bb0b..8eeb212c13 100644 --- a/README.md +++ b/README.md @@ -128,7 +128,7 @@ For example, if you want to [parameterize](https://benchmarkdotnet.org/articles/ and run benchmarks for each case. If you want to compare benchmarks with each other, mark one of the benchmark as the [baseline](https://benchmarkdotnet.org/articles/features/baselines.html) - via `[Benchmark(baseline: true)]`: BenchmarkDotNet will compare it with all of the other benchmarks. + via `[Benchmark(Baseline = true)]`: BenchmarkDotNet will compare it with all of the other benchmarks. If you want to compare performance in different environments, use [jobs](https://benchmarkdotnet.org/articles/configs/jobs.html). For example, you can run all the benchmarks on .NET Core 3.0 and Mono via `[SimpleJob(RuntimeMoniker.NetCoreApp30)]` and `[SimpleJob(RuntimeMoniker.Mono)]`.