From: Zachary Ware Date: Tue, 22 Jul 2014 18:14:54 +0000 (-0500) Subject: Fix minor typo in round docs. Reported by Scott Hinton on docs@. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=85b5b739997607459b786ede746c167cbabd1405;p=python Fix minor typo in round docs. Reported by Scott Hinton on docs@. --- diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index 80ce681348..0667ec53f3 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -1229,7 +1229,7 @@ available. They are listed here in alphabetical order. 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``).