summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2010-05-05 21:52:39 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2010-05-05 21:52:39 (GMT)
commit9319548e56f108ee46d0f14c06d39a9ff9612a40 (patch)
tree8b74807b2482b173a460c7640e956af832fe0410 /Doc
parent5fb89df07b3c7d08249e2ab202be3b879f7fb3a4 (diff)
downloadcpython-9319548e56f108ee46d0f14c06d39a9ff9612a40.zip
cpython-9319548e56f108ee46d0f14c06d39a9ff9612a40.tar.gz
cpython-9319548e56f108ee46d0f14c06d39a9ff9612a40.tar.bz2
Issue 8628: fix incorrect documentation for numbers.Complex.imag.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/numbers.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/numbers.rst b/Doc/library/numbers.rst
index 580127c..300a6f3 100644
--- a/Doc/library/numbers.rst
+++ b/Doc/library/numbers.rst
@@ -31,11 +31,11 @@ The numeric tower
.. attribute:: real
- Abstract. Retrieves the :class:`Real` component of this number.
+ Abstract. Retrieves the real component of this number.
.. attribute:: imag
- Abstract. Retrieves the :class:`Real` component of this number.
+ Abstract. Retrieves the imaginary component of this number.
.. method:: conjugate()