]> granicus.if.org Git - python/commitdiff
Fix a typo pointed out on docs@
authorZachary Ware <zachary.ware@gmail.com>
Fri, 20 Feb 2015 04:15:36 +0000 (22:15 -0600)
committerZachary Ware <zachary.ware@gmail.com>
Fri, 20 Feb 2015 04:15:36 +0000 (22:15 -0600)
Doc/reference/expressions.rst

index d0682cae53ad8b5b5b0a6da70e9341788c00e018..1a5088abbcac494c332e53efbfcdc7291e471244 100644 (file)
@@ -1067,7 +1067,7 @@ Comparison of objects of the same type depends on the type:
 * 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``.