Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.

Commit

Permalink
Indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
jkotas committed Sep 20, 2019
1 parent 8ac7a2e commit b092d28
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,8 @@ private unsafe int IndexOfOrdinalIgnoreCaseHelper(ReadOnlySpan<char> source, Rea
}

return -1;
InteropCall:

InteropCall:
if (fromBeginning)
return Interop.Globalization.IndexOf(_sortHandle, b, target.Length, a, source.Length, options, matchLengthPtr);
else
Expand Down Expand Up @@ -450,6 +451,7 @@ private unsafe int IndexOfOrdinalHelper(ReadOnlySpan<char> source, ReadOnlySpan<
}

return -1;

InteropCall:
if (fromBeginning)
return Interop.Globalization.IndexOf(_sortHandle, b, target.Length, a, source.Length, options, matchLengthPtr);
Expand Down

0 comments on commit b092d28

Please sign in to comment.