diff options
Diffstat (limited to 'Doc/library/2to3.rst')
-rw-r--r-- | Doc/library/2to3.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/2to3.rst b/Doc/library/2to3.rst index 158b3be..fda214c 100644 --- a/Doc/library/2to3.rst +++ b/Doc/library/2to3.rst @@ -290,11 +290,11 @@ and off individually. They are described here in more detail. Converts the use of iterator's :meth:`~iterator.next` methods to the :func:`next` function. It also renames :meth:`next` methods to - :meth:`~object.__next__`. + :meth:`~iterator.__next__`. .. 2to3fixer:: nonzero - Renames :meth:`~object.__nonzero__` to :meth:`~object.__bool__`. + Renames :meth:`__nonzero__` to :meth:`~object.__bool__`. .. 2to3fixer:: numliterals |