; Fix a typo in the doc-strings of cond*

* lisp/emacs-lisp/cond-star.el (cond*): Fix a typo in the
doc-string.  (Bug#72576)
This commit is contained in:
Gautier Ponsinet 2024-08-11 14:52:11 +02:00 committed by Eli Zaretskii
parent ca56dc2e71
commit d60f3d5dd4

View file

@ -35,7 +35,7 @@
(defmacro cond* (&rest clauses)
"Extended form of traditional Lisp `cond' construct.
A `cond*' construct is a series of clauses, and a clause
normally has the form (CONDITION BDOY...).
normally has the form (CONDITION BODY...).
CONDITION can be a Lisp expression, as in `cond'.
Or it can be `(bind* BINDINGS...)' or `(match* PATTERN DATUM)'.