From 8e0c82a35f1f9a9d43e85a0567382cb40b7d2525 Mon Sep 17 00:00:00 2001 From: Fred Drake <fdrake@acm.org> Date: Sat, 16 Mar 2002 14:01:12 +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 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} -- 2.40.0