summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorJohannes Gijsbers <jlg@dds.nl>2004-09-11 16:50:06 (GMT)
committerJohannes Gijsbers <jlg@dds.nl>2004-09-11 16:50:06 (GMT)
commitd345225ae51874b036662e4d1ed0f3f25257661e (patch)
tree721ddd44c37bf8871d53d118b7ef8f83a8d0d228 /Doc/whatsnew
parent7a8c43ee6a1f9c50bec8cc5234eff8b1d5e61088 (diff)
downloadcpython-d345225ae51874b036662e4d1ed0f3f25257661e.zip
cpython-d345225ae51874b036662e4d1ed0f3f25257661e.tar.gz
cpython-d345225ae51874b036662e4d1ed0f3f25257661e.tar.bz2
Patch #1026384: fix two common typo's:
- accomodate -> accommodate - occured -> occurred Thanks George Yoshida!
Diffstat (limited to 'Doc/whatsnew')
-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 18f8e5b..45315cb 100644
--- a/Doc/whatsnew/whatsnew24.tex
+++ b/Doc/whatsnew/whatsnew24.tex
@@ -1098,7 +1098,7 @@ r ['r', 'r']
>>> # List unique letters
>>> [k for k, g in groupby(letters)]
['a', 'b', 'c', 'd', 'r']
->>> # Count letter occurences
+>>> # Count letter occurrences
>>> [(k, len(list(g))) for k, g in groupby(letters)]
[('a', 5), ('b', 2), ('c', 1), ('d', 1), ('r', 2)]
\end{verbatim}