summaryrefslogtreecommitdiffstats
path: root/Doc/lib/libre.tex
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2002-02-25 18:56:45 (GMT)
committerFred Drake <fdrake@acm.org>2002-02-25 18:56:45 (GMT)
commitb6b2aa6c75f887c0c33f304f34dc517c36eeb3ba (patch)
tree6e707d37f5e0705b8e12992a8dba3552e7c9c7ed /Doc/lib/libre.tex
parent666e70de251c54ef58a58ba7ef65ed060bce5e16 (diff)
downloadcpython-b6b2aa6c75f887c0c33f304f34dc517c36eeb3ba.zip
cpython-b6b2aa6c75f887c0c33f304f34dc517c36eeb3ba.tar.gz
cpython-b6b2aa6c75f887c0c33f304f34dc517c36eeb3ba.tar.bz2
Fix error in explanation of the interaction between $ and MULTILINE mode.
Reported by Steve Alexander.
Diffstat (limited to 'Doc/lib/libre.tex')
-rw-r--r--Doc/lib/libre.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libre.tex b/Doc/lib/libre.tex
index 37c249e..1c14072 100644
--- a/Doc/lib/libre.tex
+++ b/Doc/lib/libre.tex
@@ -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.