summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAlexander Cerutti <alexandercerutti@users.noreply.github.com>2018-07-20 20:45:22 +0200
committerAlex Early <alexander.early@gmail.com>2018-07-20 11:45:22 -0700
commit3741f80b958bd6afde7fa39af55cea886e8bb3ad (patch)
tree73e703dd17a03c87e927db3d10cbf769bb2647db /lib
parentbf7f054ca8801d4540fe49f7a4bb5d0575a53769 (diff)
downloadasync-3741f80b958bd6afde7fa39af55cea886e8bb3ad.tar.gz
Updated concat documentation (#1564)
Concat function, since v2.5.0, returns back array results in the original order.
Diffstat (limited to 'lib')
-rw-r--r--lib/concat.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/concat.js b/lib/concat.js
index b4857c9..f9435e5 100644
--- a/lib/concat.js
+++ b/lib/concat.js
@@ -4,9 +4,8 @@ import concatLimit from './concatLimit';
/**
* Applies `iteratee` to each item in `coll`, concatenating the results. Returns
* the concatenated list. The `iteratee`s are called in parallel, and the
- * results are concatenated as they return. There is no guarantee that the
- * results array will be returned in the original order of `coll` passed to the
- * `iteratee` function.
+ * results are concatenated as they return. The results array will be returned in
+ * the original order of `coll` passed to the `iteratee` function.
*
* @name concat
* @static