]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix stupid typo in example.
authorFred Drake <fdrake@acm.org>
Sat, 16 Mar 2002 13:53:35 +0000 (13:53 +0000)
committerFred Drake <fdrake@acm.org>
Sat, 16 Mar 2002 13:53:35 +0000 (13:53 +0000)
Doc/lib/libre.tex

index 1a88a31ad7a29add9b5f4f95f3328fce1ea05eda..a3484125390cad77b9b0ce7ec008f43a30227265 100644 (file)
@@ -268,7 +268,7 @@ likely want to use the \function{search()} function rather than the
 
 \begin{verbatim}
 >>> import re
->>> m = re.search('(?<=abc)def', 'abdef')
+>>> m = re.search('(?<=abc)def', 'abcdef')
 >>> m.group(0)
 'def'
 \end{verbatim}