summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-12-23 22:17:42 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-12-23 22:17:42 (GMT)
commit5793e6f4b02b3c377906c639e5d5412f942837d4 (patch)
tree5bc6904adb1bc849085ecd6ea07f60e1aba162e9 /Lib
parentd65a901aed0867c66fd4951e5144f5b5315b5de0 (diff)
downloadcpython-5793e6f4b02b3c377906c639e5d5412f942837d4.zip
cpython-5793e6f4b02b3c377906c639e5d5412f942837d4.tar.gz
cpython-5793e6f4b02b3c377906c639e5d5412f942837d4.tar.bz2
fix docstring
Diffstat (limited to 'Lib')
-rw-r--r--Lib/numbers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/numbers.py b/Lib/numbers.py
index b5a49c6..b8651c2 100644
--- a/Lib/numbers.py
+++ b/Lib/numbers.py
@@ -60,7 +60,7 @@ class Complex(Number):
@abstractproperty
def imag(self):
- """Retrieve the real component of this number.
+ """Retrieve the imaginary component of this number.
This should subclass Real.
"""