diff --git a/src/libraries/System.Private.CoreLib/src/System/Numerics/INumberBase.cs b/src/libraries/System.Private.CoreLib/src/System/Numerics/INumberBase.cs index 2f08b4e800016..e647b23c344a3 100644 --- a/src/libraries/System.Private.CoreLib/src/System/Numerics/INumberBase.cs +++ b/src/libraries/System.Private.CoreLib/src/System/Numerics/INumberBase.cs @@ -216,7 +216,10 @@ static virtual TSelf CreateTruncating(TOther value) /// Determines if a value represents a real value. /// The value to be checked. /// true if is a real number; otherwise, false. - /// This function returns true for a complex number a + bi where b is zero. + /// + /// This function returns true for a complex number a + bi where b is zero. + /// This function checks values against the extended real number line, thus returns true for positive and negative infinity. + /// static abstract bool IsRealNumber(TSelf value); /// Determines if a value is subnormal.