Skip to content

Commit 35bfdea

Browse files
committed
Fix typo
1 parent 2fb0f46 commit 35bfdea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/coreclr/tools/Common/JitInterface/CorInfoImpl.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4430,7 +4430,7 @@ private bool notifyInstructionSetUsage(InstructionSet instructionSet, bool suppo
44304430
{
44314431
ReadOnlySpan<char> partialMethodName = methodName.Slice(45);
44324432

4433-
if (partialMethodName.StartWith("Numerics.Vector"))
4433+
if (partialMethodName.StartsWith("Numerics.Vector"))
44344434
{
44354435
partialMethodName = partialMethodName.Slice(15);
44364436

@@ -4439,7 +4439,7 @@ private bool notifyInstructionSetUsage(InstructionSet instructionSet, bool suppo
44394439
methodName = partialMethodName.Slice(7);
44404440
}
44414441
}
4442-
if (partialMethodName.StartWith("Runtime.Intrinsics.Vector"))
4442+
if (partialMethodName.StartsWith("Runtime.Intrinsics.Vector"))
44434443
{
44444444
partialMethodName = partialMethodName.Slice(25);
44454445

0 commit comments

Comments
 (0)