emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 17d4f60: Fix typos in docstrings


From: Nicolas Petton
Subject: [Emacs-diffs] master 17d4f60: Fix typos in docstrings
Date: Wed, 14 Oct 2015 15:57:37 +0000

branch: master
commit 17d4f60b55dd7998a4afffa9413c9e1731791f1a
Author: Nicolas Petton <address@hidden>
Commit: Nicolas Petton <address@hidden>

    Fix typos in docstrings
    
    * lisp/emacs-lisp/map.el:
    * lisp/emacs-lisp/seq.el: Fix typos in the docstrings of the pcase
      macros.
---
 lisp/emacs-lisp/map.el |    2 +-
 lisp/emacs-lisp/seq.el |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/lisp/emacs-lisp/map.el b/lisp/emacs-lisp/map.el
index 7564463..cc437e0 100644
--- a/lisp/emacs-lisp/map.el
+++ b/lisp/emacs-lisp/map.el
@@ -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
diff --git a/lisp/emacs-lisp/seq.el b/lisp/emacs-lisp/seq.el
index d7c9c74..ce6645a 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)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]