diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2010-04-06 22:10:55 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2010-04-06 22:10:55 (GMT) |
commit | e07acb5f15efdb41c76705bd8c13e088928d1cce (patch) | |
tree | 7edfeec6f02c9fc0237c8ae8f8bbf4d922b749a2 /Doc | |
parent | 3a1dfa21c297a263823033a45e3739d201dfddcf (diff) | |
download | cpython-e07acb5f15efdb41c76705bd8c13e088928d1cce.zip cpython-e07acb5f15efdb41c76705bd8c13e088928d1cce.tar.gz cpython-e07acb5f15efdb41c76705bd8c13e088928d1cce.tar.bz2 |
Use consistent spelling for nans (thanks Georg for noticing).
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 13b85bf..2c6e51c 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 |