]> git.eshelyaron.com Git - emacs.git/commitdiff
; * lisp/emacs-lisp/seq.el (seq-filter): Fix typo in doc string.
authorEli Zaretskii <eliz@gnu.org>
Thu, 17 Nov 2022 06:48:14 +0000 (08:48 +0200)
committerEli Zaretskii <eliz@gnu.org>
Thu, 17 Nov 2022 06:48:14 +0000 (08:48 +0200)
lisp/emacs-lisp/seq.el

index 37b843bcca29c174c1e4da9824fa1fbbb6096d58..1645da2eb0bcae89124522f24d0b5b1f2f0b2d8a 100644 (file)
@@ -336,7 +336,7 @@ TYPE can be one of the following symbols: `vector', `string' or
 
 ;;;###autoload
 (cl-defgeneric seq-filter (pred sequence)
-  "Return a list of the all elements in SEQUENCE for which PRED returns non-nil."
+  "Return a list of all the elements in SEQUENCE for which PRED returns non-nil."
   (let ((exclude (make-symbol "exclude")))
     (delq exclude (seq-map (lambda (elt)
                              (if (funcall pred elt)