[Python-checkins] r45923 - peps/trunk/pep-0289.txt

george.yoshida python-checkins at python.org
Sat May 6 15:30:38 CEST 2006


Author: george.yoshida
Date: Sat May  6 15:30:38 2006
New Revision: 45923

Modified:
   peps/trunk/pep-0289.txt
Log:
Typo fix


Modified: peps/trunk/pep-0289.txt
==============================================================================
--- peps/trunk/pep-0289.txt	(original)
+++ peps/trunk/pep-0289.txt	Sat May  6 15:30:38 2006
@@ -33,7 +33,7 @@
 
     sum([x*x for x in range(10)])
 
-Memory is conserved by using a generator expession instead::
+Memory is conserved by using a generator expression instead::
 
     sum(x*x for x in range(10))
 


More information about the Python-checkins mailing list