Skip to content

Commit

Permalink
Use 4 spaces in coding-style.md examples (dotnet#2066)
Browse files Browse the repository at this point in the history
  • Loading branch information
Youssef1313 authored and jkotas committed Jan 23, 2020
1 parent ff3971a commit 1d84023
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/coding-guidelines/coding-style.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ namespace System.Collections.Generic

private void InsertNodeBefore(LinkedListNode<T> node, LinkedListNode<T> newNode)
{
...
...
}

...
Expand Down Expand Up @@ -124,10 +124,10 @@ namespace System.Collections.Generics
_parent = parent;
_value = value;
}

public T Value
{
get { return _value; }
get { return _value; }
}
}

Expand Down

0 comments on commit 1d84023

Please sign in to comment.