From: Mark Dickinson Date: Sun, 18 Nov 2012 10:41:29 +0000 (+0000) Subject: Typo fix. X-Git-Tag: v2.7.4rc1~367 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3c9181b927d69ad706ae9af16ce9e74a7dfc86f1;p=thirdparty%2FPython%2Fcpython.git Typo fix. --- diff --git a/Doc/library/decimal.rst b/Doc/library/decimal.rst index 27e790e560a8..934b26eb4c7d 100644 --- a/Doc/library/decimal.rst +++ b/Doc/library/decimal.rst @@ -387,7 +387,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