diff options
author | Hubert Argasinski <argasinski.hubert@gmail.com> | 2016-06-29 01:35:29 -0400 |
---|---|---|
committer | Hubert Argasinski <argasinski.hubert@gmail.com> | 2016-06-29 01:56:11 -0400 |
commit | 7eaa3b3a9bee0df38ebc0b640a97de42ca05d5da (patch) | |
tree | 942b9ea5e9a18f7f55fd01c51555d0c01f82fc5e /lib/parallel.js | |
parent | 90c4f893a30044b67d48a62e42d2c42f379a822f (diff) | |
download | async-7eaa3b3a9bee0df38ebc0b640a97de42ca05d5da.tar.gz |
jsdocs: using proxy modules as categories, modifying minami theme
jsdocs: style fix in outputted html
jsdoc: added documentation to support script
Diffstat (limited to 'lib/parallel.js')
-rw-r--r-- | lib/parallel.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/parallel.js b/lib/parallel.js index e61e337..9df6bd6 100644 --- a/lib/parallel.js +++ b/lib/parallel.js @@ -2,6 +2,9 @@ import parallelLimit from './parallelLimit'; import doLimit from './internal/doLimit'; /** + * ``` + * import parallel from 'async/parallel' + * ``` * Run the `tasks` collection of functions in parallel, without waiting until * the previous function has completed. If any of the functions pass an error to * its callback, the main `callback` is immediately called with the value of the @@ -21,7 +24,7 @@ import doLimit from './internal/doLimit'; * * @name parallel * @static - * @memberOf module:async + * @memberOf module:ControlFlow * @method * @category Control Flow * @param {Array|Object} tasks - A collection containing functions to run. |