summaryrefslogtreecommitdiffstats
path: root/Doc/lib
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2001-07-26 21:01:21 (GMT)
committerGreg Ward <gward@python.net>2001-07-26 21:01:21 (GMT)
commit54f65094c31498189fd3db05a4ac5c82cf432ae4 (patch)
treed30070f1ba3c8c88a6aee88c3c009c0760d92389 /Doc/lib
parent7321ec437b0aef968b83137d9c638551cabab706 (diff)
downloadcpython-54f65094c31498189fd3db05a4ac5c82cf432ae4.zip
cpython-54f65094c31498189fd3db05a4ac5c82cf432ae4.tar.gz
cpython-54f65094c31498189fd3db05a4ac5c82cf432ae4.tar.bz2
Typo fix.
Diffstat (limited to 'Doc/lib')
-rw-r--r--Doc/lib/libstdtypes.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libstdtypes.tex b/Doc/lib/libstdtypes.tex
index f913f41..d478f31 100644
--- a/Doc/lib/libstdtypes.tex
+++ b/Doc/lib/libstdtypes.tex
@@ -330,7 +330,7 @@ One method needs to be defined for container objects to provide
iteration support:
\begin{methoddesc}[container]{__iter__}{}
- Return an interator object. The object is required to support the
+ Return an iterator object. The object is required to support the
iterator protocol described below. If a container supports
different types of iteration, additional methods can be provided to
specifically request iterators for those iteration types. (An