diff options
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/math.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/math.rst b/Doc/library/math.rst index e7b2ec7..38bdc46 100644 --- a/Doc/library/math.rst +++ b/Doc/library/math.rst @@ -303,9 +303,9 @@ Constants are some exceptions to this rule, for example ``pow(float('nan'), 0.0)`` or ``hypot(float('nan'), float('inf'))``. - Note that Python makes no effort to distinguish signaling nans from - quiet nans, and behavior for signaling nans remains unspecified. - Typical behavior is to treat all nans as though they were quiet. + Note that Python makes no effort to distinguish signaling NaNs from + quiet NaNs, and behavior for signaling NaNs remains unspecified. + Typical behavior is to treat all NaNs as though they were quiet. .. seealso:: |