]> granicus.if.org Git - python/commitdiff
Fix error in explanation of the interaction between $ and MULTILINE mode.
authorFred Drake <fdrake@acm.org>
Mon, 25 Feb 2002 18:56:45 +0000 (18:56 +0000)
committerFred Drake <fdrake@acm.org>
Mon, 25 Feb 2002 18:56:45 +0000 (18:56 +0000)
Reported by Steve Alexander.

Doc/lib/libre.tex

index 37c249e926cbd449daee1cdc6556b4c5529aea00..1c1407258c52b46ae564f703756b6619dee1e22d 100644 (file)
@@ -101,7 +101,7 @@ after each newline.
 newline at the end of the string, and in \constant{MULTILINE} mode
 also matches before a newline.  \regexp{foo} matches both 'foo' and
 'foobar', while the regular expression \regexp{foo\$} matches only
-'foo'.  More interestingly, searching for \regexp{foo\$} in
+'foo'.  More interestingly, searching for \regexp{foo.\$} in
 'foo1\textbackslash nfoo2\textbackslash n' matches 'foo2' normally,
 but 'foo1' in \constant{MULTILINE} mode.