summaryrefslogtreecommitdiff
path: root/src/mscorlib/corefx/System/IO/PathInternal.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/mscorlib/corefx/System/IO/PathInternal.cs')
-rw-r--r--src/mscorlib/corefx/System/IO/PathInternal.cs5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mscorlib/corefx/System/IO/PathInternal.cs b/src/mscorlib/corefx/System/IO/PathInternal.cs
index 6b4c3b2d30..0dab5b968a 100644
--- a/src/mscorlib/corefx/System/IO/PathInternal.cs
+++ b/src/mscorlib/corefx/System/IO/PathInternal.cs
@@ -40,7 +40,7 @@ namespace System.IO
if (HasIllegalCharacters(path))
throw new ArgumentException(SR.Argument_InvalidPathChars, nameof(path));
}
-
+
/// <summary>
/// Returns the start index of the filename
/// in the given path, or 0 if no directory
@@ -140,7 +140,7 @@ namespace System.IO
return firstRootLength == secondRootLength
&& string.Compare(
strA: first,
- indexA: 0,
+ indexA: 0,
strB: second,
indexB: 0,
length: firstRootLength,
@@ -166,7 +166,6 @@ namespace System.IO
searchPattern = searchPattern.Substring(index + 2);
}
-
}
}
}