summaryrefslogtreecommitdiffstats
path: root/Doc/lib
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/lib')
-rw-r--r--Doc/lib/libstdtypes.tex4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/lib/libstdtypes.tex b/Doc/lib/libstdtypes.tex
index 938dc6e..ae1ba43 100644
--- a/Doc/lib/libstdtypes.tex
+++ b/Doc/lib/libstdtypes.tex
@@ -537,14 +537,14 @@ In Python 2.3 and beyond, \var{x} may be a string of any length.
be zero.
\item[(6)] If \var{s} and \var{t} are both strings, some Python
-implementations such as CPython can usally perform an inplace optimization
+implementations such as CPython can usually perform an in-place optimization
for assignments of the form \code{\var{s}=\var{s}+\var{t}} or
\code{\var{s}+=\var{t}}. When applicable, this optimization makes
quadratic run-time much less likely. This optimization is both version
and implementation dependent. For performance sensitive code, it is
preferrable to use the \method{str.join()} method which assures consistent
linear concatenation performance across versions and implementations.
-\versionchanged[Formerly, string concatenation never occurred inplace]{2.4}
+\versionchanged[Formerly, string concatenation never occurred in-place]{2.4}
\end{description}