[Python-checkins] python/dist/src/Doc/howto regex.tex,1.1,1.2

akuchling@users.sourceforge.net akuchling at users.sourceforge.net
Wed Aug 31 19:49:51 CEST 2005


Update of /cvsroot/python/python/dist/src/Doc/howto
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13867

Modified Files:
	regex.tex 
Log Message:
Typo fix

Index: regex.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/howto/regex.tex,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- regex.tex	30 Aug 2005 01:25:06 -0000	1.1
+++ regex.tex	31 Aug 2005 17:49:39 -0000	1.2
@@ -1313,7 +1313,7 @@
 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.



More information about the Python-checkins mailing list