Skip to content

Commit

Permalink
Updated concat documentation (#1564)
Browse files Browse the repository at this point in the history
Concat function, since v2.5.0, returns back array results in the original order.
  • Loading branch information
alexandercerutti authored and aearly committed Jul 20, 2018
1 parent bf7f054 commit 3741f80
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions lib/concat.js
Expand Up @@ -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
Expand Down

0 comments on commit 3741f80

Please sign in to comment.