Skip to content

Commit c4ae15b

Browse files
authored
Merge pull request dotnet#8547 from dakersnar/fix-69694
Fix documentation for INumberBase IsComplex and IsImaginary
2 parents dfa2278 + 162ea69 commit c4ae15b

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
@@ -259,7 +259,7 @@
259259
260260
## Remarks
261261
262-
This function returns `false` for a complex number `a + bi` where `b` is zero.
262+
This function returns `false` for a complex number `a + bi` where `a` or `b` is zero. In other words, it excludes real numbers and pure imaginary numbers.
263263
264264
]]></format>
265265
</remarks>
@@ -355,15 +355,15 @@ A return value of `false` does not imply that <xref:System.Numerics.INumberBase%
355355
</Parameters>
356356
<Docs>
357357
<param name="value">The value to be checked.</param>
358-
<summary>Determines if a value represents an imaginary number.</summary>
358+
<summary>Determines if a value represents a pure imaginary number.</summary>
359359
<returns>
360-
<see langword="true" /> if <paramref name="value" /> is an imaginary number; otherwise, <see langword="false" />.</returns>
360+
<see langword="true" /> if <paramref name="value" /> is a pure imaginary number; otherwise, <see langword="false" />.</returns>
361361
<remarks>
362362
<format type="text/markdown"><![CDATA[
363363
364364
## Remarks
365365
366-
This function returns `false` for a complex number `a + bi` where `a` is non-zero.
366+
This function returns `false` for a complex number `a + bi` where `a` is non-zero, as that number is not purely imaginary.
367367
368368
]]></format>
369369
</remarks>

0 commit comments

Comments
 (0)