From: Gautier Ponsinet Date: Sun, 11 Aug 2024 12:52:11 +0000 (+0200) Subject: ; Fix a typo in the doc-strings of cond* X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1eabe75e6f21c649694292ce9dfa578008901180;p=emacs.git ; 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) (cherry picked from commit d60f3d5dd4b753f23f99d862b0a051af9a8ca930) --- diff --git a/lisp/emacs-lisp/cond-star.el b/lisp/emacs-lisp/cond-star.el index c79df677e08..4110af5386d 100644 --- a/lisp/emacs-lisp/cond-star.el +++ b/lisp/emacs-lisp/cond-star.el @@ -34,8 +34,8 @@ (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...). +A `cond*' construct is a series of clauses, and a clause +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)'.