[Python-checkins] cpython (merge 3.3 -> default): Merge typo fix from 3.3.

mark.dickinson python-checkins at python.org
Sun Nov 18 11:43:02 CET 2012


http://hg.python.org/cpython/rev/a0421b30a841
changeset:   80494:a0421b30a841
parent:      80490:0263d2ef9530
parent:      80493:e6d0f6485767
user:        Mark Dickinson <mdickinson at enthought.com>
date:        Sun Nov 18 10:42:42 2012 +0000
summary:
  Merge typo fix from 3.3.

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


diff --git a/Doc/library/decimal.rst b/Doc/library/decimal.rst
--- a/Doc/library/decimal.rst
+++ b/Doc/library/decimal.rst
@@ -412,7 +412,7 @@
 
    The integer division operator ``//`` behaves analogously, returning the
    integer part of the true quotient (truncating towards zero) rather than its
-   floor, so as to preseve the usual identity ``x == (x // y) * y + x % y``::
+   floor, so as to preserve the usual identity ``x == (x // y) * y + x % y``::
 
       >>> -7 // 4
       -2

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


More information about the Python-checkins mailing list