]> granicus.if.org Git - python/commitdiff
A regexp example was rendered as
authorTim Peters <tim.peters@gmail.com>
Fri, 5 Oct 2001 20:06:47 +0000 (20:06 +0000)
committerTim Peters <tim.peters@gmail.com>
Fri, 5 Oct 2001 20:06:47 +0000 (20:06 +0000)
    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.

Doc/lib/libre.tex

index 8531732bb066acef4dacd9fd0e6bf812960d0a8c..7ee1efda986987d8738de27a92e06a018a4ca559 100644 (file)
@@ -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.