Skip to content

Commit 29a0ebb

Browse files
authored
Update good-practices.md (#2618)
1 parent c8105aa commit 29a0ebb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/articles/guides/good-practices.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
Never use the Debug build for benchmarking. *Never*. The debug version of the target method can run 10–100 times slower.
66
The release mode means that you should have `<Optimize>true</Optimize>` in your csproj file
7-
or use [/optimize](https://learn.microsoft.com/dotnet/csharp/language-reference/compiler-options/) for `csc`. Also your never
8-
should use an attached debugger (e.g. Visual Studio or WinDbg) during the benchmarking. The best way is
7+
or use [/optimize](https://learn.microsoft.com/dotnet/csharp/language-reference/compiler-options/) for `csc`. Also, never
8+
use an attached debugger (e.g. Visual Studio or WinDbg) during the benchmarking. The best way is
99
build our benchmark in the Release mode and run it from the command line.
1010

1111
## Try different environments

0 commit comments

Comments
 (0)