Use 4 spaces in coding-style.md examples (#2066)
authorYoussef Victor <31348972+Youssef1313@users.noreply.github.com>
Thu, 23 Jan 2020 13:52:33 +0000 (15:52 +0200)
committerJan Kotas <jkotas@microsoft.com>
Thu, 23 Jan 2020 13:52:33 +0000 (05:52 -0800)
docs/coding-guidelines/coding-style.md

index 2df80de..ed2e913 100644 (file)
@@ -95,7 +95,7 @@ namespace System.Collections.Generic
 
         private void InsertNodeBefore(LinkedListNode<T> node, LinkedListNode<T> newNode)
         {
-           ...
+            ...
         }
         
         ...
@@ -124,10 +124,10 @@ namespace System.Collections.Generics
                 _parent = parent;
                 _value = value;
             }
-            
+
             public T Value
             {
-               get { return _value; }
+                get { return _value; }
             }
         }