* lisp/emacs-lisp/map.el:
* lisp/emacs-lisp/seq.el: Fix typos in the docstrings of the pcase
macros.
Matches if the object is a map (list, hash-table or array), and
each PATTERN matches the corresponding elements of the map.
-Supernumerary elements of the map are ignore if less ARGS are
+Supernumerary elements of the map are ignored if fewer ARGS are
given, and the match does not fail.
ARGS can be a list of the form (KEY PAT), in which case KEY in an
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)))