From: Fred Drake Date: Sat, 16 Mar 2002 14:01:12 +0000 (+0000) Subject: Fix stupid typo in example. X-Git-Tag: v2.3c1~6473 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8e0c82a35f1f9a9d43e85a0567382cb40b7d2525;p=python Fix stupid typo in example. --- diff --git a/Doc/lib/libre.tex b/Doc/lib/libre.tex index 9bad62a728..aaa282eba0 100644 --- a/Doc/lib/libre.tex +++ b/Doc/lib/libre.tex @@ -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}