summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2004-06-03 14:13:04 (GMT)
committerRaymond Hettinger <python@rcn.com>2004-06-03 14:13:04 (GMT)
commit2d1a2aa117f1cce9b4206032fcdac3632fa6a819 (patch)
treef3407491d432561e36ecc1ba51621c1be3ac31ad
parent6dfed6c41f169f03ca9cd27c0a844d45055e94c5 (diff)
downloadcpython-2d1a2aa117f1cce9b4206032fcdac3632fa6a819.zip
cpython-2d1a2aa117f1cce9b4206032fcdac3632fa6a819.tar.gz
cpython-2d1a2aa117f1cce9b4206032fcdac3632fa6a819.tar.bz2
Fix typo: the-->they
-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 302c009..fc9f573 100644
--- a/Doc/tut/tut.tex
+++ b/Doc/tut/tut.tex
@@ -4402,10 +4402,10 @@ more effort than writing a regular function.
\section{Generator Expressions\label{genexps}}
Some simple generators can be coded succinctly as expressions using a syntax
-like list comprehensions but with parentheses instead of brackets. These
+similar to list comprehensions but with parentheses instead of brackets. These
expressions are designed for situations where the generator is used right
away by an enclosing function. Generator expressions are more compact but
-less versatile than full generator definitions and the tend to be more memory
+less versatile than full generator definitions and they tend to be more memory
friendly than equivalent list comprehensions.
Examples: