diff options
author | Nicolas Petton <nicolas@petton.fr> | 2015-03-25 09:21:14 +0100 |
---|---|---|
committer | Nicolas Petton <nicolas@petton.fr> | 2015-03-25 09:21:14 +0100 |
commit | d46f31b4b2b0c56f2708e3225eb9fa973441e696 (patch) | |
tree | 06cd0c57233997db9cfdcbc15a7efd531f231d00 /lisp/emacs-lisp | |
parent | dcac0090daa378d8db5c63b586c8ea664132a8ce (diff) | |
download | emacs-d46f31b4b2b0c56f2708e3225eb9fa973441e696.tar.gz emacs-d46f31b4b2b0c56f2708e3225eb9fa973441e696.tar.bz2 emacs-d46f31b4b2b0c56f2708e3225eb9fa973441e696.zip |
* lisp/emacs-lisp/seq.el: Documentation improvements
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/seq.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/seq.el b/lisp/emacs-lisp/seq.el index 59b91408d09..c5f5906e7e5 100644 --- a/lisp/emacs-lisp/seq.el +++ b/lisp/emacs-lisp/seq.el @@ -33,8 +33,8 @@ ;; ;; All provided functions work on lists, strings and vectors. ;; -;; Functions taking a predicate or a function iterating over the -;; sequence as argument take the function as their first argument and +;; Functions taking a predicate or iterating over a sequence using a +;; function as argument take the function as their first argument and ;; the sequence as their second argument. All other functions take ;; the sequence as their first argument. ;; |