summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2004-02-12 09:50:42 (GMT)
committerRaymond Hettinger <python@rcn.com>2004-02-12 09:50:42 (GMT)
commitb1e5b5053113b9c31f864c953e1b178a58891c9f (patch)
tree8eba5b1e7c58fcfd8737178875ca464114dd8ca8
parentf3938fd02902ca55d471f9fbb533e84560745e6e (diff)
downloadcpython-b1e5b5053113b9c31f864c953e1b178a58891c9f.zip
cpython-b1e5b5053113b9c31f864c953e1b178a58891c9f.tar.gz
cpython-b1e5b5053113b9c31f864c953e1b178a58891c9f.tar.bz2
SF 895560: minor typo
-rw-r--r--Doc/tut/tut.tex4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex
index fb60faa..3933fc6 100644
--- a/Doc/tut/tut.tex
+++ b/Doc/tut/tut.tex
@@ -4285,8 +4285,8 @@ finally the instance converted to a string using the built-in function
\section{Iterators\label{iterators}}
-By now, you've probably noticed that most container objects can looped over
-using a \code{for} statement:
+By now, you've probably noticed that most container objects can be looped
+over using a \code{for} statement:
\begin{verbatim}
for element in [1, 2, 3]: