; * 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
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue