You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Correct doc comment for IMultiplyOperators returns (#8915)
Replaced _divided-by_ with _multiplied-by_ in
System.Half, System.Int128, System.UInt128,
System.Numerics.IMultiplyOperators, and
System.Runtime.InteropServices.NFloat.
This reflects the matching changes in
dotnet/runtime#83693 to the
IMultiplyOperators and NFloat and
fixesdotnet/runtime#80521
Copy file name to clipboardExpand all lines: xml/System.Numerics/IMultiplyOperators`3.xml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -52,7 +52,7 @@
52
52
<paramname="left">The value which <paramrefname="right" /> multiplies.</param>
53
53
<paramname="right">The value which multiplies <paramrefname="left" />.</param>
54
54
<summary>Multiplies two values together to compute their product.</summary>
55
-
<returns>The product of <paramrefname="left" /> divided by <paramrefname="right" />.</returns>
55
+
<returns>The product of <paramrefname="left" /> multiplied by <paramrefname="right" />.</returns>
56
56
<remarks>To be added.</remarks>
57
57
<exceptioncref="T:System.OverflowException">The product of <paramrefname="left" /> multiplied by <paramrefname="right" /> is not representable by <typeparamrefname="TResult" />.</exception>
0 commit comments