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

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


http://hg.python.org/cpython/rev/e6d0f6485767
changeset:   80493:e6d0f6485767
branch:      3.3
parent:      80489:f626c214cad0
parent:      80492:7383f733ba25
user:        Mark Dickinson <mdickinson at enthought.com>
date:        Sun Nov 18 10:42:27 2012 +0000
summary:
  Merge typo fix from 3.2.

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