diff options
| author | Nicolas Richard | 2015-06-30 09:31:03 +0200 |
|---|---|---|
| committer | Nicolas Richard | 2015-07-02 00:58:16 +0200 |
| commit | 145f28f814cc1d75cbabd91496d7b49c73f67994 (patch) | |
| tree | f5a214659c0aa622d96e6dd73670e419be03d150 | |
| parent | 2f020e82195d6870b45d24d0c46af6d92b31deca (diff) | |
| download | emacs-145f28f814cc1d75cbabd91496d7b49c73f67994.tar.gz emacs-145f28f814cc1d75cbabd91496d7b49c73f67994.zip | |
* lisp/emacs-lisp/seq.el (seq-difference): Fix typo in docstring
| -rw-r--r-- | lisp/emacs-lisp/seq.el | 2 |
1 files changed, 1 insertions, 1 deletions
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." | |||
| 279 | '())) | 279 | '())) |
| 280 | 280 | ||
| 281 | (defun seq-difference (seq1 seq2 &optional testfn) | 281 | (defun seq-difference (seq1 seq2 &optional testfn) |
| 282 | "Return a list of th elements that appear in SEQ1 but not in SEQ2. | 282 | "Return a list of the elements that appear in SEQ1 but not in SEQ2. |
| 283 | Equality is defined by TESTFN if non-nil or by `equal' if nil." | 283 | Equality is defined by TESTFN if non-nil or by `equal' if nil." |
| 284 | (seq-reduce (lambda (acc elt) | 284 | (seq-reduce (lambda (acc elt) |
| 285 | (if (not (seq-contains-p seq2 elt testfn)) | 285 | (if (not (seq-contains-p seq2 elt testfn)) |