From: Nicolas Richard Date: Tue, 30 Jun 2015 07:31:03 +0000 (+0200) Subject: * lisp/emacs-lisp/seq.el (seq-difference): Fix typo in docstring X-Git-Tag: emacs-25.0.90~1583 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=145f28f814cc1d75cbabd91496d7b49c73f67994;p=emacs.git * lisp/emacs-lisp/seq.el (seq-difference): Fix typo in docstring --- diff --git a/lisp/emacs-lisp/seq.el b/lisp/emacs-lisp/seq.el index 68d40b99f70..9eed36eb68c 100644 --- a/lisp/emacs-lisp/seq.el +++ b/lisp/emacs-lisp/seq.el @@ -279,7 +279,7 @@ Equality is defined by TESTFN if non-nil or by `equal' if nil." '())) (defun seq-difference (seq1 seq2 &optional testfn) - "Return a list of th elements that appear in SEQ1 but not in SEQ2. + "Return a list of the elements that appear in SEQ1 but not in SEQ2. Equality is defined by TESTFN if non-nil or by `equal' if nil." (seq-reduce (lambda (acc elt) (if (not (seq-contains-p seq2 elt testfn))