summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHye-Shik Chang <hyeshik@gmail.com>2004-06-04 09:33:18 +0000
committerHye-Shik Chang <hyeshik@gmail.com>2004-06-04 09:33:18 +0000
commit2d6783b4bca35dcfd9c4cf397aff78649d54eab8 (patch)
tree27051ac4d76b7d91bd45a8f5617c68d503db5882
parent4ec44e851dafc78c534efad127403d167feb4180 (diff)
downloadcpython-git-2d6783b4bca35dcfd9c4cf397aff78649d54eab8.tar.gz
SF #966375: Fix typo (Reported by Kristian Ovaska)
-rw-r--r--Doc/whatsnew/whatsnew24.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/whatsnew24.tex b/Doc/whatsnew/whatsnew24.tex
index cdad65ead1..3f4151f0b1 100644
--- a/Doc/whatsnew/whatsnew24.tex
+++ b/Doc/whatsnew/whatsnew24.tex
@@ -95,7 +95,7 @@ Now, simple generators can be coded succinctly as expressions using a syntax
like 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.
\begin{verbatim}