Fix stupid typo in example.

This commit is contained in:
Fred Drake 2002-03-16 14:01:12 +00:00
parent 83d14c12a6
commit 8e0c82a35f
1 changed files with 1 additions and 1 deletions

View File

@ -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}