]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Typo fix
authorAndrew M. Kuchling <amk@amk.ca>
Wed, 31 Aug 2005 17:49:38 +0000 (17:49 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Wed, 31 Aug 2005 17:49:38 +0000 (17:49 +0000)
Doc/howto/regex.tex

index 5a65064b02deb3369656c2d57f3a3686819a9281..87fdad2065d7dc18077d4d60791ed4b867ca337b 100644 (file)
@@ -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.