[Python-checkins] r83224 - python/branches/py3k/Doc/tutorial/floatingpoint.rst

mark.dickinson python-checkins at python.org
Thu Jul 29 15:56:56 CEST 2010


Author: mark.dickinson
Date: Thu Jul 29 15:56:56 2010
New Revision: 83224

Log:
Fix typo.

Modified:
   python/branches/py3k/Doc/tutorial/floatingpoint.rst

Modified: python/branches/py3k/Doc/tutorial/floatingpoint.rst
==============================================================================
--- python/branches/py3k/Doc/tutorial/floatingpoint.rst	(original)
+++ python/branches/py3k/Doc/tutorial/floatingpoint.rst	Thu Jul 29 15:56:56 2010
@@ -81,7 +81,7 @@
 values share the same approximation, any one of them could be displayed
 while still preserving the invariant ``eval(repr(x)) == x``.
 
-Historically, the Python prompt and built-in :func:`repr` function would chose
+Historically, the Python prompt and built-in :func:`repr` function would choose
 the one with 17 significant digits, ``0.10000000000000001``.   Starting with
 Python 3.1, Python (on most systems) is now able to choose the shortest of
 these and simply display ``0.1``.


More information about the Python-checkins mailing list