From: Andrew M. Kuchling Date: Wed, 31 Aug 2005 17:49:38 +0000 (+0000) Subject: Typo fix X-Git-Tag: v2.5a0~1418 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c28dd1faa561d6e74de59185d641e8ca27e2c28e;p=thirdparty%2FPython%2Fcpython.git Typo fix --- diff --git a/Doc/howto/regex.tex b/Doc/howto/regex.tex index 5a65064b02de..87fdad2065d7 100644 --- a/Doc/howto/regex.tex +++ b/Doc/howto/regex.tex @@ -1313,7 +1313,7 @@ Another common task is deleting every occurrence of a single character from a string or replacing it with another single character. You might do this with something like \code{re.sub('\e n', ' ', S)}, but \method{translate()} is capable of doing both tasks -and will be faster that any regular expression operation can be. +and will be faster than any regular expression operation can be. In short, before turning to the \module{re} module, consider whether your problem can be solved with a faster and simpler string method.