Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8e0c82a

Browse files
committed
Fix stupid typo in example.
1 parent 83d14c1 commit 8e0c82a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Doc/lib/libre.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ \subsection{Regular Expression Syntax \label{re-syntax}}
285285

286286
\begin{verbatim}
287287
>>> import re
288-
>>> m = re.search('(?<=abc)def', 'abdef')
288+
>>> m = re.search('(?<=abc)def', 'abcdef')
289289
>>> m.group(0)
290290
'def'
291291
\end{verbatim}

0 commit comments

Comments
 (0)