summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorHye-Shik Chang <hyeshik@gmail.com>2004-06-04 09:33:18 (GMT)
committerHye-Shik Chang <hyeshik@gmail.com>2004-06-04 09:33:18 (GMT)
commit2d6783b4bca35dcfd9c4cf397aff78649d54eab8 (patch)
tree27051ac4d76b7d91bd45a8f5617c68d503db5882 /Doc
parent4ec44e851dafc78c534efad127403d167feb4180 (diff)
downloadcpython-2d6783b4bca35dcfd9c4cf397aff78649d54eab8.zip
cpython-2d6783b4bca35dcfd9c4cf397aff78649d54eab8.tar.gz
cpython-2d6783b4bca35dcfd9c4cf397aff78649d54eab8.tar.bz2
SF #966375: Fix typo (Reported by Kristian Ovaska)
Diffstat (limited to 'Doc')
-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 cdad65e..3f4151f 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}