diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-10-05 20:06:47 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-10-05 20:06:47 (GMT) |
commit | 9835206268e9f2687f2514ad726bb105077fcb75 (patch) | |
tree | ce0fdeb5ae3d749f4fca139c44bd93e8e74ee32a | |
parent | 4a8e9f4e4215cc9bc9499ebda2017263b85c06f0 (diff) | |
download | cpython-9835206268e9f2687f2514ad726bb105077fcb75.zip cpython-9835206268e9f2687f2514ad726bb105077fcb75.tar.gz cpython-9835206268e9f2687f2514ad726bb105077fcb75.tar.bz2 |
A regexp example was rendered as
foo\d
when it was clearly intended to render as
foo$
Fred, is this a right way to fix it? If not, the earlier place in the
same paragraph that does render as
foo$
is also wrong.
-rw-r--r-- | Doc/lib/libre.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libre.tex b/Doc/lib/libre.tex index 8531732..7ee1efd 100644 --- a/Doc/lib/libre.tex +++ b/Doc/lib/libre.tex @@ -101,7 +101,7 @@ specified, this matches any character including a 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\e d} in +'foo'. More interestingly, searching for \regexp{foo\$} in 'foo1\textbackslash nfoo2\textbackslash n' matches 'foo2' normally, but 'foo1' in \constant{MULTILINE} mode. |