]> code.delx.au - gnu-emacs/commitdiff
Fix typos in docstrings
authorNicolas Petton <nicolas@petton.fr>
Wed, 14 Oct 2015 15:55:53 +0000 (17:55 +0200)
committerNicolas Petton <nicolas@petton.fr>
Wed, 14 Oct 2015 15:57:32 +0000 (17:57 +0200)
* lisp/emacs-lisp/map.el:
* lisp/emacs-lisp/seq.el: Fix typos in the docstrings of the pcase
  macros.

lisp/emacs-lisp/map.el
lisp/emacs-lisp/seq.el

index 7564463e6c608f459e88d84cc36fe9b0d76fde55..cc437e02e78b8cef4f4546855e113ee0bff823da 100644 (file)
@@ -50,7 +50,7 @@
 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
index d7c9c74b2e0af859ce4657230a0c0b86230ce2dc..ce6645a099a927183b91238267701a8a168aae08 100644 (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)))