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 e93e3d466823c..ac78fe9f44647 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<TSelf, TOther, TResult> /// <summary>Multiplies two values together to compute their product.</summary> /// <param name="left">The value which <paramref name="right" /> multiplies.</param> /// <param name="right">The value which multiplies <paramref name="left" />.</param> - /// <returns>The product of <paramref name="left" /> divided-by <paramref name="right" />.</returns> + /// <returns>The product of <paramref name="left" /> multiplied-by <paramref name="right" />.</returns> static abstract TResult operator *(TSelf left, TOther right); /// <summary>Multiplies two values together to compute their product.</summary> /// <param name="left">The value which <paramref name="right" /> multiplies.</param> /// <param name="right">The value which multiplies <paramref name="left" />.</param> - /// <returns>The product of <paramref name="left" /> divided-by <paramref name="right" />.</returns> + /// <returns>The product of <paramref name="left" /> multiplied-by <paramref name="right" />.</returns> /// <exception cref="OverflowException">The product of <paramref name="left" /> multiplied-by <paramref name="right" /> is not representable by <typeparamref name="TResult" />.</exception> 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 6d6ebd900e61d..fa60aa987cbbf 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 /// <summary>Multiplies two values together to compute their product.</summary> /// <param name="left">The value which <paramref name="right" /> multiplies.</param> /// <param name="right">The value which multiplies <paramref name="left" />.</param> - /// <returns>The product of <paramref name="left" /> divided-by <paramref name="right" />.</returns> + /// <returns>The product of <paramref name="left" /> multiplied-by <paramref name="right" />.</returns> [NonVersionable] public static NFloat operator *(NFloat left, NFloat right) => new NFloat(left._value * right._value);