summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2020-08-14 10:03:50 -0400
committerStefan Monnier <monnier@iro.umontreal.ca>2020-08-14 10:03:50 -0400
commit5d6a274c1fa1e1cb9c82a7b1bf4ff27a1f76fd66 (patch)
tree9ce392ada94464c88a98434a1d34c7e5420a4dde /doc
parent5680faad8fdf81cc14e7e7023b61854839931aae (diff)
downloademacs-5d6a274c1fa1e1cb9c82a7b1bf4ff27a1f76fd66.tar.gz
* doc/lispref/searching.texi (Regexp Special): Tweak wording
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/searching.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/lispref/searching.texi b/doc/lispref/searching.texi
index c8a12bdd66b..b6242c539b7 100644
--- a/doc/lispref/searching.texi
+++ b/doc/lispref/searching.texi
@@ -342,7 +342,7 @@ this choice, the rest of the regexp matches successfully.
long time, if they lead to ambiguous matching. For
example, trying to match the regular expression @samp{\(x+y*\)*a}
against the string @samp{xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxz} could
-take hours before it ultimately fails. Emacs must try each way of
+take hours before it ultimately fails. Emacs may try each way of
grouping the @samp{x}s before concluding that none of them can work.
In general, avoid expressions that can match the same string in
multiple ways.