summaryrefslogtreecommitdiffstats
path: root/Doc/library/decimal.rst
diff options
context:
space:
mode:
authorMark Dickinson <mdickinson@enthought.com>2012-11-18 10:42:27 (GMT)
committerMark Dickinson <mdickinson@enthought.com>2012-11-18 10:42:27 (GMT)
commiteb54deb2d216b63bd5db373e33abbc8cf5cd2aaa (patch)
tree034b4258b51d01b74d439d5e9667b9824e46bd82 /Doc/library/decimal.rst
parentf56c361212ccf3bb63c7b3e1b8e3517983890612 (diff)
parentec967246a1cd4665801e5d2bb72fea71a54e481d (diff)
downloadcpython-eb54deb2d216b63bd5db373e33abbc8cf5cd2aaa.zip
cpython-eb54deb2d216b63bd5db373e33abbc8cf5cd2aaa.tar.gz
cpython-eb54deb2d216b63bd5db373e33abbc8cf5cd2aaa.tar.bz2
Merge typo fix from 3.2.
Diffstat (limited to 'Doc/library/decimal.rst')
-rw-r--r--Doc/library/decimal.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/decimal.rst b/Doc/library/decimal.rst
index aa9b1e3..462d10a 100644
--- a/Doc/library/decimal.rst
+++ b/Doc/library/decimal.rst
@@ -412,7 +412,7 @@ Decimal objects
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