From: Fred Drake Date: Sat, 16 Mar 2002 13:53:35 +0000 (+0000) Subject: Fix stupid typo in example. X-Git-Tag: v2.1.3~33 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=00be96e2b938546167b343317dd6127f85bbd7bd;p=thirdparty%2FPython%2Fcpython.git Fix stupid typo in example. --- diff --git a/Doc/lib/libre.tex b/Doc/lib/libre.tex index 1a88a31ad7a2..a3484125390c 100644 --- a/Doc/lib/libre.tex +++ b/Doc/lib/libre.tex @@ -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}