[Python-checkins] cpython (2.7): Fix minor typo in round docs. Reported by Scott Hinton on docs at .

zach.ware python-checkins at python.org
Tue Jul 22 20:16:32 CEST 2014


http://hg.python.org/cpython/rev/5549075d6223
changeset:   91772:5549075d6223
branch:      2.7
user:        Zachary Ware <zachary.ware at gmail.com>
date:        Tue Jul 22 13:14:54 2014 -0500
summary:
  Fix minor typo in round docs.  Reported by Scott Hinton on docs at .

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


diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst
--- a/Doc/library/functions.rst
+++ b/Doc/library/functions.rst
@@ -1229,7 +1229,7 @@
    the decimal point.  If *ndigits* is omitted, it defaults to zero. The result
    is a floating point number.  Values are rounded to the closest multiple of
    10 to the power minus *ndigits*; if two multiples are equally close,
-   rounding is done away from 0 (so. for example, ``round(0.5)`` is ``1.0`` and
+   rounding is done away from 0 (so, for example, ``round(0.5)`` is ``1.0`` and
    ``round(-0.5)`` is ``-1.0``).
 
 

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


More information about the Python-checkins mailing list