From ec967246a1cd4665801e5d2bb72fea71a54e481d Mon Sep 17 00:00:00 2001 From: Mark Dickinson Date: Sun, 18 Nov 2012 10:42:07 +0000 Subject: Typo fix. --- Doc/library/decimal.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/decimal.rst b/Doc/library/decimal.rst index 30467c8..d989e3f 100644 --- a/Doc/library/decimal.rst +++ b/Doc/library/decimal.rst @@ -377,7 +377,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 -- cgit v0.12