summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2010-05-05 21:54:18 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2010-05-05 21:54:18 (GMT)
commit55f8ae28a1c3364a8f637b9f1301697cb6926253 (patch)
tree66d75c75ca057747d97e75a4c9bcc810bdba1e29 /Doc/library
parentde629d46f2a143e230398a820e9c090295f72ddb (diff)
downloadcpython-55f8ae28a1c3364a8f637b9f1301697cb6926253.zip
cpython-55f8ae28a1c3364a8f637b9f1301697cb6926253.tar.gz
cpython-55f8ae28a1c3364a8f637b9f1301697cb6926253.tar.bz2
Merged revisions 80826 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r80826 | mark.dickinson | 2010-05-05 22:52:39 +0100 (Wed, 05 May 2010) | 1 line Issue 8628: fix incorrect documentation for numbers.Complex.imag. ........
Diffstat (limited to 'Doc/library')
-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 2b13a79..67c2f33 100644
--- a/Doc/library/numbers.rst
+++ b/Doc/library/numbers.rst
@@ -29,11 +29,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()