From 46b0802ccd9a9c47b27a285526fbb2a8bee5b8cb Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Tue, 1 Mar 2005 03:12:26 +0000 Subject: [PATCH] Fix small grammatical error in a docstring. --- Lib/decimal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/decimal.py b/Lib/decimal.py index 90e2dccefa..7f71b83559 100644 --- a/Lib/decimal.py +++ b/Lib/decimal.py @@ -1414,7 +1414,7 @@ class Decimal(object): return float(str(self)) def __int__(self): - """Converts self to a int, truncating if necessary.""" + """Converts self to an int, truncating if necessary.""" if self._is_special: if self._isnan(): context = getcontext() -- 2.49.0