diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2010-05-05 21:52:39 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2010-05-05 21:52:39 (GMT) |
commit | 9319548e56f108ee46d0f14c06d39a9ff9612a40 (patch) | |
tree | 8b74807b2482b173a460c7640e956af832fe0410 | |
parent | 5fb89df07b3c7d08249e2ab202be3b879f7fb3a4 (diff) | |
download | cpython-9319548e56f108ee46d0f14c06d39a9ff9612a40.zip cpython-9319548e56f108ee46d0f14c06d39a9ff9612a40.tar.gz cpython-9319548e56f108ee46d0f14c06d39a9ff9612a40.tar.bz2 |
Issue 8628: fix incorrect documentation for numbers.Complex.imag.
-rw-r--r-- | Doc/library/numbers.rst | 4 |
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() |