[Python-checkins] cpython (3.4): Fix a typo pointed out on docs@

zach.ware python-checkins at python.org
Fri Feb 20 05:16:11 CET 2015


https://hg.python.org/cpython/rev/c6dd9ada7102
changeset:   94689:c6dd9ada7102
branch:      3.4
parent:      94686:c509e6f18d7d
user:        Zachary Ware <zachary.ware at gmail.com>
date:        Thu Feb 19 22:15:36 2015 -0600
summary:
  Fix a typo pointed out on docs@

files:
  Doc/reference/expressions.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst
--- a/Doc/reference/expressions.rst
+++ b/Doc/reference/expressions.rst
@@ -1067,7 +1067,7 @@
 * Numbers are compared arithmetically.
 
 * The values :const:`float('NaN')` and :const:`Decimal('NaN')` are special.
-  The are identical to themselves, ``x is x`` but are not equal to themselves,
+  They are identical to themselves, ``x is x`` but are not equal to themselves,
   ``x != x``.  Additionally, comparing any value to a not-a-number value
   will return ``False``.  For example, both ``3 < float('NaN')`` and
   ``float('NaN') < 3`` will return ``False``.

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list