Update coding-style.md (dotnet/corefx#41506)
authorHaresh Ambaliya <hareshambaliya@gmail.com>
Thu, 3 Oct 2019 19:55:51 +0000 (01:25 +0530)
committerSantiago Fernandez Madero <safern@microsoft.com>
Thu, 3 Oct 2019 19:55:51 +0000 (12:55 -0700)
* Update coding-style.md

Changed Keyboard shortcut to show white space.

* Update coding-style.md

@gfoidl I have added about how to enable View White Space. I think we are good now.

Commit migrated from https://github.com/dotnet/corefx/commit/d39276b9d4af15aebd829eaf1fbd7d43212a1f15

docs/libraries/coding-guidelines/coding-style.md

index 06b67ff..989c9f3 100644 (file)
@@ -20,7 +20,7 @@ The general rule we follow is "use Visual Studio defaults".
    blank lines between members of a type.
 8. Avoid spurious free spaces.
    For example avoid `if (someVar == 0)...`, where the dots mark the spurious free spaces.
-   Consider enabling "View White Space (Ctrl+E, S)" if using Visual Studio to aid detection.
+   Consider enabling "View White Space (Ctrl+R, Ctrl+W)" or "Edit -> Advanced -> View White Space" if using Visual Studio to aid detection.
 9. If a file happens to differ in style from these guidelines (e.g. private members are named `m_member`
    rather than `_member`), the existing style in that file takes precedence.
 10. We only use `var` when it's obvious what the variable type is (e.g. `var stream = new FileStream(...)` not `var stream = OpenStandardInput()`).