1
0
Fork 0
mirror of https://github.com/VSadov/Satori.git synced 2025-06-08 03:27:04 +09:00

Use 4 spaces in coding-style.md examples (#2066)

This commit is contained in:
Youssef Victor 2020-01-23 15:52:33 +02:00 committed by Jan Kotas
parent ff3971a1a2
commit 1d84023aec

View 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; }
}
}