summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2024-10-01 09:15:44 +0800
committerSean Whitton <spwhitton@spwhitton.name>2024-10-01 09:15:44 +0800
commit3e92f952aa15ff3dd3f9a8523646252dcb1dc412 (patch)
tree42fbff3d5195f95de18f34ab747c2dfdd57e2b18
parentb64f69f6dcc08e5aeea0464f6d8b560ed7002d36 (diff)
; * lisp/emacs-lisp/cond-star.el (cond*): Fix typo.
-rw-r--r--lisp/emacs-lisp/cond-star.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/cond-star.el b/lisp/emacs-lisp/cond-star.el
index 543386bfcf5..9495ad96a6c 100644
--- a/lisp/emacs-lisp/cond-star.el
+++ b/lisp/emacs-lisp/cond-star.el
@@ -58,7 +58,7 @@ When a clause's condition is true, and it exits the `cond*'
or is the last clause, the value of the last expression
in its body becomes the return value of the `cond*' construct.
-Mon-exit clause:
+Non-exit clause:
If a clause has only one element, or if its first element is
t, or if it ends with the keyword :non-exit, then