diff --git a/src/libraries/System.Private.CoreLib/src/System/Numerics/IMultiplyOperators.cs b/src/libraries/System.Private.CoreLib/src/System/Numerics/IMultiplyOperators.cs index e93e3d466823c2..ac78fe9f446479 100644 --- a/src/libraries/System.Private.CoreLib/src/System/Numerics/IMultiplyOperators.cs +++ b/src/libraries/System.Private.CoreLib/src/System/Numerics/IMultiplyOperators.cs @@ -13,13 +13,13 @@ public interface IMultiplyOperators /// Multiplies two values together to compute their product. /// The value which multiplies. /// The value which multiplies . - /// The product of divided-by . + /// The product of multiplied-by . static abstract TResult operator *(TSelf left, TOther right); /// Multiplies two values together to compute their product. /// The value which multiplies. /// The value which multiplies . - /// The product of divided-by . + /// The product of multiplied-by . /// The product of multiplied-by is not representable by . static virtual TResult operator checked *(TSelf left, TOther right) => left * right; } diff --git a/src/libraries/System.Private.CoreLib/src/System/Runtime/InteropServices/NFloat.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/InteropServices/NFloat.cs index 6d6ebd900e61dd..fa60aa987cbbf1 100644 --- a/src/libraries/System.Private.CoreLib/src/System/Runtime/InteropServices/NFloat.cs +++ b/src/libraries/System.Private.CoreLib/src/System/Runtime/InteropServices/NFloat.cs @@ -164,7 +164,7 @@ public double Value /// Multiplies two values together to compute their product. /// The value which multiplies. /// The value which multiplies . - /// The product of divided-by . + /// The product of multiplied-by . [NonVersionable] public static NFloat operator *(NFloat left, NFloat right) => new NFloat(left._value * right._value);