summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2024-02-20 15:44:13 +0200
committerEli Zaretskii <eliz@gnu.org>2024-02-20 15:44:13 +0200
commit4c6653f23aef097e3a6ed687e21decea6c790b5e (patch)
tree31e6d708e249bb70aa47a615e2cb1473b705ec32 /lisp/emacs-lisp
parent5a64d2c7595dc393504c6eee9321d74dbd8ae9e2 (diff)
downloademacs-4c6653f23aef097e3a6ed687e21decea6c790b5e.tar.gz
emacs-4c6653f23aef097e3a6ed687e21decea6c790b5e.tar.bz2
emacs-4c6653f23aef097e3a6ed687e21decea6c790b5e.zip
; * lisp/emacs-lisp/pcase.el (pcase-let*, pcase-let): Doc fix.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/pcase.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/pcase.el b/lisp/emacs-lisp/pcase.el
index 47db2b89b9e..692c8f9b3fe 100644
--- a/lisp/emacs-lisp/pcase.el
+++ b/lisp/emacs-lisp/pcase.el
@@ -261,7 +261,7 @@ As with `pcase-let', BINDINGS are of the form (PATTERN EXP), but the
EXP in each binding in BINDINGS can use the results of the destructuring
bindings that precede it in BINDINGS' order.
-Each EXP should match (i.e. be of compatible structure) to its
+Each EXP should match (i.e. be of compatible structure) its
respective PATTERN; a mismatch may signal an error or may go
undetected, binding variables to arbitrary values, such as nil."
(declare (indent 1)
@@ -283,7 +283,7 @@ All EXPs are evaluated first, and then used to perform destructuring
bindings by matching each EXP against its respective PATTERN. Then
BODY is evaluated with those bindings in effect.
-Each EXP should match (i.e. be of compatible structure) to its
+Each EXP should match (i.e. be of compatible structure) its
respective PATTERN; a mismatch may signal an error or may go
undetected, binding variables to arbitrary values, such as nil."
(declare (indent 1) (debug pcase-let*))