[Python-checkins] r53620 - peps/trunk/pep-0008.txt

andrew.kuchling python-checkins at python.org
Thu Feb 1 22:04:20 CET 2007


Author: andrew.kuchling
Date: Thu Feb  1 22:04:19 2007
New Revision: 53620

Modified:
   peps/trunk/pep-0008.txt
Log:
Wording fix

Modified: peps/trunk/pep-0008.txt
==============================================================================
--- peps/trunk/pep-0008.txt	(original)
+++ peps/trunk/pep-0008.txt	Thu Feb  1 22:04:19 2007
@@ -628,7 +628,7 @@
       in-place string concatenation for statements in the form a+=b or a=a+b.
       Those statements run more slowly in Jython.  In performance sensitive
       parts of the library, the ''.join() form should be used instead.  This
-      will assure that concatenation occurs in linear time across various
+      will ensure that concatenation occurs in linear time across various
       implementations.
 
     - Comparisons to singletons like None should always be done with


More information about the Python-checkins mailing list