Skip to content

Commit 18482a8

Browse files
Fix typo
1 parent 2c89d1b commit 18482a8

File tree

1 file changed

+2
-2
lines changed
  • src/libraries/System.Private.CoreLib/src/System

1 file changed

+2
-2
lines changed

src/libraries/System.Private.CoreLib/src/System/Math.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ internal static ulong BigMul(ulong a, uint b, out ulong low)
182182
{
183183
if (Bmi2.X64.IsSupported)
184184
{
185-
// Ideally, we should do a single multiply for low and high. Doing this efficiently would mean making BigMul an instrinct (would work on all x64 targets) or fixing https://github.com/dotnet/runtime/issues/11782
185+
// Ideally, we should do a single multiply for low and high. Doing this efficiently would mean making BigMul an intrinsic (would work on all x64 targets) or fixing https://github.com/dotnet/runtime/issues/11782
186186
low = a * b;
187187
return Bmi2.X64.MultiplyNoFlags(a, b);
188188
}
@@ -211,7 +211,7 @@ public static ulong BigMul(ulong a, ulong b, out ulong low)
211211
{
212212
if (Bmi2.X64.IsSupported)
213213
{
214-
// Ideally, we should do a single multiply for low and high. Doing this efficiently would mean making BigMul an instrinct (would work on all x64 targets) or fixing https://github.com/dotnet/runtime/issues/11782
214+
// Ideally, we should do a single multiply for low and high. Doing this efficiently would mean making BigMul an intrinsic (would work on all x64 targets) or fixing https://github.com/dotnet/runtime/issues/11782
215215
low = a * b;
216216
return Bmi2.X64.MultiplyNoFlags(a, b);
217217
}

0 commit comments

Comments
 (0)