Commit e50b994b authored by Andrew Svetlov's avatar Andrew Svetlov

Issue #16138: fix typo.

parent 186dea50
...@@ -562,7 +562,7 @@ Glossary ...@@ -562,7 +562,7 @@ Glossary
sequence sequence
An :term:`iterable` which supports efficient element access using integer An :term:`iterable` which supports efficient element access using integer
indices via the :meth:`__getitem__` special method and defines a indices via the :meth:`__getitem__` special method and defines a
:meth:`len` method that returns the length of the sequence. :meth:`__len__` method that returns the length of the sequence.
Some built-in sequence types are :class:`list`, :class:`str`, Some built-in sequence types are :class:`list`, :class:`str`,
:class:`tuple`, and :class:`bytes`. Note that :class:`dict` also :class:`tuple`, and :class:`bytes`. Note that :class:`dict` also
supports :meth:`__getitem__` and :meth:`__len__`, but is considered a supports :meth:`__getitem__` and :meth:`__len__`, but is considered a
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment