; * 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

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