]> granicus.if.org Git - python/commitdiff
Fix stupid typo in example.
authorFred Drake <fdrake@acm.org>
Sat, 16 Mar 2002 14:01:12 +0000 (14:01 +0000)
committerFred Drake <fdrake@acm.org>
Sat, 16 Mar 2002 14:01:12 +0000 (14:01 +0000)
Doc/lib/libre.tex

index 9bad62a72895144ab9d1ee28f1eb39157f6c2e8e..aaa282eba0ddd711b0bad9200a6ff191c899c682 100644 (file)
@@ -285,7 +285,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}