[Python-checkins] r46041 - python/trunk/Doc/whatsnew/whatsnew20.tex

andrew.kuchling python-checkins at python.org
Fri May 19 02:03:56 CEST 2006


Author: andrew.kuchling
Date: Fri May 19 02:03:55 2006
New Revision: 46041

Modified:
   python/trunk/Doc/whatsnew/whatsnew20.tex
Log:
Typo fix; add clarifying word

Modified: python/trunk/Doc/whatsnew/whatsnew20.tex
==============================================================================
--- python/trunk/Doc/whatsnew/whatsnew20.tex	(original)
+++ python/trunk/Doc/whatsnew/whatsnew20.tex	Fri May 19 02:03:55 2006
@@ -330,7 +330,7 @@
 [ expression for expr in sequence1 
              for expr2 in sequence2 ...
 	     for exprN in sequenceN
-             if condition
+             if condition ]
 \end{verbatim}
 
 The \keyword{for}...\keyword{in} clauses contain the sequences to be
@@ -356,7 +356,7 @@
                   # resulting list.
 \end{verbatim}
 
-This means that when there are \keyword{for}...\keyword{in} clauses,
+This means that when there are multiple \keyword{for}...\keyword{in} clauses,
 the resulting list will be equal to the product of the lengths of all
 the sequences.  If you have two lists of length 3, the output list is
 9 elements long:


More information about the Python-checkins mailing list