From: Mark Dickinson Date: Wed, 5 May 2010 21:53:32 +0000 (+0000) Subject: Merged revisions 80826 via svnmerge from X-Git-Tag: v2.6.6rc1~360 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6bb7c4f2efafb8d5a34f2e7a980342e2e4abfd49;p=python 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. ........ --- diff --git a/Doc/library/numbers.rst b/Doc/library/numbers.rst index 580127c095..300a6f305c 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()