diff options
Diffstat (limited to 'Doc/lib/libre.tex')
-rw-r--r-- | Doc/lib/libre.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libre.tex b/Doc/lib/libre.tex index 9bad62a..aaa282e 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} |