Skip to content

Commit e819bd5

Browse files
authored
Fix INumber.Sign documentation for zero return value (#11480)
1 parent 8645ca1 commit e819bd5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xml/System.Numerics/INumber`1.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ For <xref:System.Numerics.IFloatingPoint%601> this method matches the IEEE 754:2
438438
<Docs>
439439
<param name="value">The value whose sign is to be computed.</param>
440440
<summary>Computes the sign of a value.</summary>
441-
<returns>A positive value if <paramref name="value" /> is positive, <see cref="P:System.Numerics.INumberBase`1.Zero" /> if <paramref name="value" /> is zero, and a negative value if <paramref name="value" /> is negative.</returns>
441+
<returns>A positive value if <paramref name="value" /> is positive, <c>0</c> if <paramref name="value" /> is zero, and a negative value if <paramref name="value" /> is negative.</returns>
442442
<remarks>
443443
<format type="text/markdown"><![CDATA[
444444

0 commit comments

Comments
 (0)