summaryrefslogtreecommitdiff
path: root/lispref
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-05-19 07:29:00 +0000
committerRichard M. Stallman <rms@gnu.org>1997-05-19 07:29:00 +0000
commite39a3c45170ef0729f4cce9c14cadecb88ef4f30 (patch)
tree5b274f2223ec7a4a1f1b54d65dbbbbe51422a7bf /lispref
parent64a3bc70e70e19698381f7e585858453f7be1574 (diff)
downloademacs-e39a3c45170ef0729f4cce9c14cadecb88ef4f30.tar.gz
Fix typo in previous change.
Diffstat (limited to 'lispref')
-rw-r--r--lispref/searching.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/lispref/searching.texi b/lispref/searching.texi
index 80c10e94d9a..9c0d4a22af2 100644
--- a/lispref/searching.texi
+++ b/lispref/searching.texi
@@ -260,7 +260,7 @@ Thus, @samp{[ad]} matches either one @samp{a} or one @samp{d}, and
matches @samp{cr}, @samp{car}, @samp{cdr}, @samp{caddaar}, etc.
You can also include character ranges in a character set, by writing the
-startong and ending characters with a @samp{-} between them. Thus,
+starting and ending characters with a @samp{-} between them. Thus,
@samp{[a-z]} matches any lower-case ASCII letter. Ranges may be
intermixed freely with individual characters, as in @samp{[a-z$%.]},
which matches any lower case ASCII letter or @samp{$}, @samp{%} or