Wording fix
This commit is contained in:
parent
3be6bcdbc7
commit
594770c5ec
|
@ -628,7 +628,7 @@ Programming Recommendations
|
||||||
in-place string concatenation for statements in the form a+=b or a=a+b.
|
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
|
Those statements run more slowly in Jython. In performance sensitive
|
||||||
parts of the library, the ''.join() form should be used instead. This
|
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.
|
implementations.
|
||||||
|
|
||||||
- Comparisons to singletons like None should always be done with
|
- Comparisons to singletons like None should always be done with
|
||||||
|
|
Loading…
Reference in New Issue