From: Mark Dickinson Date: Tue, 6 Apr 2010 22:10:55 +0000 (+0000) Subject: Use consistent spelling for nans (thanks Georg for noticing). X-Git-Tag: v2.7b1~30 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e07acb5f15efdb41c76705bd8c13e088928d1cce;p=python Use consistent spelling for nans (thanks Georg for noticing). --- diff --git a/Doc/library/math.rst b/Doc/library/math.rst index 13b85bf85e..2c6e51ce3f 100644 --- a/Doc/library/math.rst +++ b/Doc/library/math.rst @@ -381,9 +381,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. .. versionchanged:: 2.6 Behavior in special cases now aims to follow C99 Annex F. In earlier