; * doc/lispref/searching.texi (Rx Notation): Simplify rx example
This commit is contained in:
parent
03e5698167
commit
f47297782b
1 changed files with 6 additions and 6 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue