Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLevi Broderick <levib@microsoft.com>2018-03-06 05:18:23 +0300
committerLevi Broderick <GrabYourPitchforks@users.noreply.github.com>2018-03-06 11:37:24 +0300
commit09337f8a49db26a1bff97f9fc000878771e02032 (patch)
tree6f1c7302a6da5a66406faf47e569f95357b061a6
parent0aeb1474be7a0f85e70fa647af20703dd4baea45 (diff)
Fix whitespace
Signed-off-by: dotnet-bot-corefx-mirror <dotnet-bot@microsoft.com> Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
-rw-r--r--src/System.Private.CoreLib/shared/System/SpanHelpers.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/System.Private.CoreLib/shared/System/SpanHelpers.cs b/src/System.Private.CoreLib/shared/System/SpanHelpers.cs
index 901aa4426..6752d7fef 100644
--- a/src/System.Private.CoreLib/shared/System/SpanHelpers.cs
+++ b/src/System.Private.CoreLib/shared/System/SpanHelpers.cs
@@ -511,7 +511,7 @@ namespace System
return; // nothing to write
}
-Write4To7:
+ Write4To7:
Debug.Assert(pointerSizeLength >= 4);
// Write first four and last three.
@@ -521,14 +521,14 @@ Write4To7:
Unsafe.Add(ref Unsafe.Add(ref ip, (IntPtr)pointerSizeLength), -3) = default(IntPtr);
Unsafe.Add(ref Unsafe.Add(ref ip, (IntPtr)pointerSizeLength), -2) = default(IntPtr);
-Write2To3:
+ Write2To3:
Debug.Assert(pointerSizeLength >= 2);
// Write first two and last one.
Unsafe.Add(ref ip, 1) = default(IntPtr);
Unsafe.Add(ref Unsafe.Add(ref ip, (IntPtr)pointerSizeLength), -1) = default(IntPtr);
-Write1:
+ Write1:
Debug.Assert(pointerSizeLength >= 1);
// Write only element.