summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2010-04-06 22:14:23 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2010-04-06 22:14:23 (GMT)
commita3607c8c3b11e84c7171caa160fa18bccaa134b8 (patch)
tree0a93dfd40f9240cf5bdf4c0f998089c2cd46174e /Doc
parentdee6795eeda1b3931c0379665cc08c349dc3af32 (diff)
downloadcpython-a3607c8c3b11e84c7171caa160fa18bccaa134b8.zip
cpython-a3607c8c3b11e84c7171caa160fa18bccaa134b8.tar.gz
cpython-a3607c8c3b11e84c7171caa160fa18bccaa134b8.tar.bz2
Merged revisions 79873 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r79873 | mark.dickinson | 2010-04-06 23:13:37 +0100 (Tue, 06 Apr 2010) | 9 lines Merged revisions 79871 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r79871 | mark.dickinson | 2010-04-06 23:10:55 +0100 (Tue, 06 Apr 2010) | 2 lines Use consistent spelling for nans (thanks Georg for noticing). ........ ................
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/math.rst6
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::