diff options
author | Fred Drake <fdrake@acm.org> | 2004-05-12 03:07:27 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2004-05-12 03:07:27 (GMT) |
commit | bb066cf84149684297d306a708a82f5c276118fb (patch) | |
tree | cf7897fe2a1f260e6a791ebce37048d2568eda6f /Doc/lib/libregex.tex | |
parent | f72de0fb8cf74c7fd99515273cf1d91fcfaf3de2 (diff) | |
download | cpython-bb066cf84149684297d306a708a82f5c276118fb.zip cpython-bb066cf84149684297d306a708a82f5c276118fb.tar.gz cpython-bb066cf84149684297d306a708a82f5c276118fb.tar.bz2 |
fix various typos; thanks, George Yoshida!
(closes SF patch #952047)
Diffstat (limited to 'Doc/lib/libregex.tex')
-rw-r--r-- | Doc/lib/libregex.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libregex.tex b/Doc/lib/libregex.tex index 93c389a..0982f81 100644 --- a/Doc/lib/libregex.tex +++ b/Doc/lib/libregex.tex @@ -44,7 +44,7 @@ regular expression represented as a string literal, you have to E.g.\ to extract \LaTeX\ \samp{\e section\{\textrm{\ldots}\}} headers from a document, you can use this pattern: \code{'[\e ]section\{\e (.*\e )\}'}. \emph{Another exception:} -the escape sequece \samp{\e b} is significant in string literals +the escape sequence \samp{\e b} is significant in string literals (where it means the ASCII bell character) as well as in Emacs regular expressions (where it stands for a word boundary), so in order to search for a word boundary, you should use the pattern \code{'\e \e b'}. |