]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix a typo in the doc-strings of cond*
authorGautier Ponsinet <gautier@gautierponsinet.xyz>
Sun, 11 Aug 2024 12:52:11 +0000 (14:52 +0200)
committerEshel Yaron <me@eshelyaron.com>
Sun, 11 Aug 2024 18:07:16 +0000 (20:07 +0200)
* lisp/emacs-lisp/cond-star.el (cond*): Fix a typo in the
doc-string.  (Bug#72576)

(cherry picked from commit d60f3d5dd4b753f23f99d862b0a051af9a8ca930)

lisp/emacs-lisp/cond-star.el

index c79df677e0815183c79b47460c0dda2d5a85208e..4110af5386d1e6a6bf0a65f7a1af2fec2b598750 100644 (file)
@@ -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)'.