Fix error in explanation of the interaction between $ and MULTILINE mode.

Reported by Steve Alexander.
This commit is contained in:
Fred Drake 2002-02-25 18:56:45 +00:00
parent 666e70de25
commit b6b2aa6c75
1 changed files with 1 additions and 1 deletions

View 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.