1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-06 06:20:55 -08:00

Fix typos in docstrings

* lisp/emacs-lisp/map.el:
* lisp/emacs-lisp/seq.el: Fix typos in the docstrings of the pcase
  macros.
This commit is contained in:
Nicolas Petton 2015-10-14 17:55:53 +02:00
parent aebf282aec
commit 17d4f60b55
2 changed files with 2 additions and 2 deletions

View file

@ -77,7 +77,7 @@ Evaluate BODY with VAR bound to each element of SEQ, in turn.
Matches if the object is a sequence (list, string or vector), and
each PATTERN matches the corresponding element of the sequence.
Supernumerary elements of the sequence are ignore if less
Supernumerary elements of the sequence are ignored if fewer
PATTERNS are given, and the match does not fail."
`(and (pred seq-p)
,@(seq--make-pcase-bindings patterns)))