Wording fix

This commit is contained in:
Andrew M. Kuchling 2007-02-01 21:04:19 +00:00
parent 3be6bcdbc7
commit 594770c5ec
1 changed files with 1 additions and 1 deletions

View File

@ -628,7 +628,7 @@ Programming Recommendations
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