diff options
author | Hye-Shik Chang <hyeshik@gmail.com> | 2004-06-04 09:33:18 (GMT) |
---|---|---|
committer | Hye-Shik Chang <hyeshik@gmail.com> | 2004-06-04 09:33:18 (GMT) |
commit | 2d6783b4bca35dcfd9c4cf397aff78649d54eab8 (patch) | |
tree | 27051ac4d76b7d91bd45a8f5617c68d503db5882 /Doc | |
parent | 4ec44e851dafc78c534efad127403d167feb4180 (diff) | |
download | cpython-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.tex | 2 |
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} |