[Python-checkins] python/dist/src/Doc/whatsnew whatsnew24.tex, 1.99, 1.100

jlgijsbers at users.sourceforge.net jlgijsbers at users.sourceforge.net
Sat Sep 11 18:50:09 CEST 2004


Update of /cvsroot/python/python/dist/src/Doc/whatsnew
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15319/whatsnew

Modified Files:
	whatsnew24.tex 
Log Message:
Patch #1026384: fix two common typo's:

- accomodate -> accommodate
- occured -> occurred

Thanks George Yoshida!


Index: whatsnew24.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/whatsnew/whatsnew24.tex,v
retrieving revision 1.99
retrieving revision 1.100
diff -u -d -r1.99 -r1.100
--- whatsnew24.tex	10 Sep 2004 13:05:22 -0000	1.99
+++ whatsnew24.tex	11 Sep 2004 16:50:06 -0000	1.100
@@ -1098,7 +1098,7 @@
 >>> # 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}



More information about the Python-checkins mailing list