From 43cca14a9e8cef3eda877ca3dc6a6a9c57263a33 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Thu, 17 Nov 2022 08:48:14 +0200 Subject: [PATCH] ; * lisp/emacs-lisp/seq.el (seq-filter): Fix typo in doc string. --- lisp/emacs-lisp/seq.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/emacs-lisp/seq.el b/lisp/emacs-lisp/seq.el index 37b843bcca2..1645da2eb0b 100644 --- a/lisp/emacs-lisp/seq.el +++ b/lisp/emacs-lisp/seq.el @@ -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) -- 2.39.2