Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9835206

Browse files
committed
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.
1 parent 4a8e9f4 commit 9835206

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Doc/lib/libre.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ \subsection{Regular Expression Syntax \label{re-syntax}}
101101
newline at the end of the string, and in \constant{MULTILINE} mode
102102
also matches before a newline. \regexp{foo} matches both 'foo' and
103103
'foobar', while the regular expression \regexp{foo\$} matches only
104-
'foo'. More interestingly, searching for \regexp{foo\e d} in
104+
'foo'. More interestingly, searching for \regexp{foo\$} in
105105
'foo1\textbackslash nfoo2\textbackslash n' matches 'foo2' normally,
106106
but 'foo1' in \constant{MULTILINE} mode.
107107

0 commit comments

Comments
 (0)