From: Greg Ward Date: Thu, 26 Jul 2001 21:01:21 +0000 (+0000) Subject: Typo fix. X-Git-Tag: v2.2a3~957 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=54f65094c31498189fd3db05a4ac5c82cf432ae4;p=python Typo fix. --- diff --git a/Doc/lib/libstdtypes.tex b/Doc/lib/libstdtypes.tex index f913f415ea..d478f31608 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