[Python-checkins] cpython (3.2): Typo fix.

mark.dickinson python-checkins at python.org
Sun Nov 18 11:42:59 CET 2012


http://hg.python.org/cpython/rev/7383f733ba25
changeset:   80492:7383f733ba25
branch:      3.2
parent:      80488:0ec314f26791
user:        Mark Dickinson <mdickinson at enthought.com>
date:        Sun Nov 18 10:42:07 2012 +0000
summary:
  Typo fix.

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
@@ -377,7 +377,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