* lisp/emacs-lisp/seq.el (seq-difference): Fix typo in docstring

This commit is contained in:
Nicolas Richard 2015-06-30 09:31:03 +02:00
parent 2f020e8219
commit 145f28f814

View file

@ -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))