diff options
author | Mark Dickinson <mdickinson@enthought.com> | 2012-11-18 10:42:42 +0000 |
---|---|---|
committer | Mark Dickinson <mdickinson@enthought.com> | 2012-11-18 10:42:42 +0000 |
commit | 9de28f4c0ce464f97451a69fe807ad9a1b80073c (patch) | |
tree | 3522a9c8a941bab721f380a8a82b699ff1617136 | |
parent | add87369a8a2c54169940637d8b96bac03a2b151 (diff) | |
parent | eb54deb2d216b63bd5db373e33abbc8cf5cd2aaa (diff) | |
download | cpython-git-9de28f4c0ce464f97451a69fe807ad9a1b80073c.tar.gz |
Merge typo fix from 3.3.
-rw-r--r-- | Doc/library/decimal.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/decimal.rst b/Doc/library/decimal.rst index aa9b1e322e..462d10a434 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 |