From: Mark Dickinson Date: Wed, 5 May 2010 21:52:39 +0000 (+0000) Subject: Issue 8628: fix incorrect documentation for numbers.Complex.imag. X-Git-Tag: v2.7b2~58 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9319548e56f108ee46d0f14c06d39a9ff9612a40;p=python 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()