emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/dash 9371ce4 164/426: Don't use the word collection whe


From: Phillip Lord
Subject: [elpa] externals/dash 9371ce4 164/426: Don't use the word collection when meaning list
Date: Tue, 04 Aug 2015 19:37:26 +0000

branch: externals/dash
commit 9371ce4087c3322a01effbdc031194ead91fe67b
Author: Magnar Sveen <address@hidden>
Commit: Magnar Sveen <address@hidden>

    Don't use the word collection when meaning list
---
 README.md |    2 +-
 dash.el   |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index 1751cf9..027ddfe 100644
--- a/README.md
+++ b/README.md
@@ -216,7 +216,7 @@ Returns a new list with the concatenation of the elements 
in the supplied `lists
 ### -mapcat `(fn list)`
 
 Returns the concatenation of the result of mapping `fn` over `list`.
-Thus function `fn` should return a collection.
+Thus function `fn` should return a list.
 
 ```cl
 (-mapcat 'list '(1 2 3)) ;; => '(1 2 3)
diff --git a/dash.el b/dash.el
index ea56fe5..b04fb27 100644
--- a/dash.el
+++ b/dash.el
@@ -215,7 +215,7 @@ through the REP function."
 
 (defun -mapcat (fn list)
   "Returns the concatenation of the result of mapping FN over LIST.
-Thus function FN should return a collection."
+Thus function FN should return a list."
   (--mapcat (funcall fn it) list))
 
 (defun -cons* (&rest args)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]