diff options
author | Nicolas Petton <nicolas@petton.fr> | 2015-10-14 17:55:53 +0200 |
---|---|---|
committer | Nicolas Petton <nicolas@petton.fr> | 2015-10-14 17:57:32 +0200 |
commit | 17d4f60b55dd7998a4afffa9413c9e1731791f1a (patch) | |
tree | a38066496453c14759652087d8aaf9a7de79173b /lisp/emacs-lisp/seq.el | |
parent | aebf282aec46e3e8246a3dce535ecccf173c391b (diff) | |
download | emacs-17d4f60b55dd7998a4afffa9413c9e1731791f1a.tar.gz |
Fix typos in docstrings
* lisp/emacs-lisp/map.el:
* lisp/emacs-lisp/seq.el: Fix typos in the docstrings of the pcase
macros.
Diffstat (limited to 'lisp/emacs-lisp/seq.el')
-rw-r--r-- | lisp/emacs-lisp/seq.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/seq.el b/lisp/emacs-lisp/seq.el index d7c9c74b2e0..ce6645a099a 100644 --- a/lisp/emacs-lisp/seq.el +++ b/lisp/emacs-lisp/seq.el @@ -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))) |