From 3741f80b958bd6afde7fa39af55cea886e8bb3ad Mon Sep 17 00:00:00 2001 From: Alexander Cerutti Date: Fri, 20 Jul 2018 20:45:22 +0200 Subject: [PATCH] Updated concat documentation (#1564) Concat function, since v2.5.0, returns back array results in the original order. --- lib/concat.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/concat.js b/lib/concat.js index b4857c9d2..f9435e56a 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