From 00be96e2b938546167b343317dd6127f85bbd7bd Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Sat, 16 Mar 2002 13:53:35 +0000 Subject: [PATCH] Fix stupid typo in example. --- Doc/lib/libre.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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} -- 2.47.3