Skip to content

Commit 0b83b36

Browse files
skyoxZBillWagnertannergooding
authored
Fix docs of Min/MaxMagnitude{Number} (dotnet#9487)
* Fix docs about Min/MaxMagnitude{Number} * Fix missing word * Apply suggestions from code review Co-authored-by: Tanner Gooding <tagoo@outlook.com> --------- Co-authored-by: Bill Wagner <wiwagn@microsoft.com> Co-authored-by: Tanner Gooding <tagoo@outlook.com>
1 parent 98ea803 commit 0b83b36

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

xml/System.Numerics/INumberBase`1.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -852,7 +852,7 @@ This function treats both positive and negative zero as zero and so will return
852852
<param name="y">The value to compare with <paramref name="x" />.</param>
853853
<summary>Compares two values to compute which has the greater magnitude.</summary>
854854
<returns>
855-
<paramref name="x" /> if it is greater than <paramref name="y" />; otherwise, <paramref name="y" />.</returns>
855+
<paramref name="x" /> if it has a greater magnitude than <paramref name="y" />; otherwise, <paramref name="y" />.</returns>
856856
<remarks>
857857
<format type="text/markdown"><![CDATA[
858858
@@ -889,7 +889,7 @@ For <xref:System.Numerics.IFloatingPointIeee754%601> this method matches the IEE
889889
<param name="y">The value to compare with <paramref name="x" />.</param>
890890
<summary>Compares two values to compute which has the greater magnitude and returning the other value if an input is <c>NaN</c>.</summary>
891891
<returns>
892-
<paramref name="x" /> if it is greater than <paramref name="y" />; otherwise, <paramref name="y" />.</returns>
892+
<paramref name="x" /> if it has a greater magnitude than <paramref name="y" />; otherwise, <paramref name="y" />.</returns>
893893
<remarks>
894894
<format type="text/markdown"><![CDATA[
895895
@@ -926,7 +926,7 @@ For <xref:System.Numerics.IFloatingPointIeee754%601> this method matches the IEE
926926
<param name="y">The value to compare with <paramref name="x" />.</param>
927927
<summary>Compares two values to compute which has the lesser magnitude.</summary>
928928
<returns>
929-
<paramref name="x" /> if it is less than <paramref name="y" />; otherwise, <paramref name="y" />.</returns>
929+
<paramref name="x" /> if it has a lesser magnitude than <paramref name="y" />; otherwise, <paramref name="y" />.</returns>
930930
<remarks>
931931
<format type="text/markdown"><![CDATA[
932932
@@ -963,7 +963,7 @@ For <xref:System.Numerics.IFloatingPointIeee754%601> this method matches the IEE
963963
<param name="y">The value to compare with <paramref name="x" />.</param>
964964
<summary>Compares two values to compute which has the lesser magnitude and returning the other value if an input is <c>NaN</c>.</summary>
965965
<returns>
966-
<paramref name="x" /> if it is less than <paramref name="y" />; otherwise, <paramref name="y" />.</returns>
966+
<paramref name="x" /> if it has a lesser magnitude than <paramref name="y" />; otherwise, <paramref name="y" />.</returns>
967967
<remarks>
968968
<format type="text/markdown"><![CDATA[
969969

0 commit comments

Comments
 (0)