summaryrefslogtreecommitdiff
path: root/lib/concat.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/concat.js')
-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