; * doc/lispref/searching.texi (Rx Notation): Simplify rx example

This commit is contained in:
Mattias Engdegård 2024-09-09 15:18:36 +02:00
parent 03e5698167
commit f47297782b

View file

@ -1028,13 +1028,13 @@ programming language:
@example
@group
(rx "/*" ; Initial /*
(rx "/*" ; Initial /*
(zero-or-more
(or (not (any "*")) ; Either non-*,
(seq "*" ; or * followed by
(not (any "/"))))) ; non-/
(one-or-more "*") ; At least one star,
"/") ; and the final /
(or (not "*") ; Either non-*,
(seq "*" ; or * followed by
(not "/")))) ; non-/
(one-or-more "*") ; At least one star,
"/") ; and the final /
@end group
@end example