]> granicus.if.org Git - python/commitdiff
Fix typo: the-->they
authorRaymond Hettinger <python@rcn.com>
Thu, 3 Jun 2004 14:13:04 +0000 (14:13 +0000)
committerRaymond Hettinger <python@rcn.com>
Thu, 3 Jun 2004 14:13:04 +0000 (14:13 +0000)
Doc/tut/tut.tex

index 302c009cf2643a1c9c4ecc7cd9c6868905ce71f1..fc9f573196ed35722b980881d5e64ad67f45c146 100644 (file)
@@ -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: