summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLevi Broderick <levib@microsoft.com>2018-03-05 18:18:23 -0800
committerLevi Broderick <GrabYourPitchforks@users.noreply.github.com>2018-03-06 00:06:33 -0800
commit932619f409c1d7b00cf1b4b4c4358f43e95239cd (patch)
treeaa9629484e8339ee4ba1e6825284da7bf1f95b48 /src
parent26596005e400da77303a5f5d04da7693af99ce31 (diff)
downloadcoreclr-932619f409c1d7b00cf1b4b4c4358f43e95239cd.tar.gz
coreclr-932619f409c1d7b00cf1b4b4c4358f43e95239cd.tar.bz2
coreclr-932619f409c1d7b00cf1b4b4c4358f43e95239cd.zip
Fix whitespace
Signed-off-by: dotnet-bot-corefx-mirror <dotnet-bot@microsoft.com>
Diffstat (limited to 'src')
-rw-r--r--src/mscorlib/shared/System/SpanHelpers.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mscorlib/shared/System/SpanHelpers.cs b/src/mscorlib/shared/System/SpanHelpers.cs
index 901aa4426b..6752d7fef7 100644
--- a/src/mscorlib/shared/System/SpanHelpers.cs
+++ b/src/mscorlib/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.