summaryrefslogtreecommitdiff
path: root/lib/timesSeries.js
diff options
context:
space:
mode:
authorHubert Argasinski <argasinski.hubert@gmail.com>2016-06-29 01:35:29 -0400
committerHubert Argasinski <argasinski.hubert@gmail.com>2016-06-29 01:56:11 -0400
commit7eaa3b3a9bee0df38ebc0b640a97de42ca05d5da (patch)
tree942b9ea5e9a18f7f55fd01c51555d0c01f82fc5e /lib/timesSeries.js
parent90c4f893a30044b67d48a62e42d2c42f379a822f (diff)
downloadasync-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/timesSeries.js')
-rw-r--r--lib/timesSeries.js11
1 files changed, 7 insertions, 4 deletions
diff --git a/lib/timesSeries.js b/lib/timesSeries.js
index 2a46a73..adef004 100644
--- a/lib/timesSeries.js
+++ b/lib/timesSeries.js
@@ -2,17 +2,20 @@ import timesLimit from './timesLimit';
import doLimit from './internal/doLimit';
/**
- * The same as {@link async.times} but runs only a single async operation at a time.
+ * ```
+ * import timesSeries from 'async/timesSeries'
+ * ```
+ * The same as [times]{@link module:ControlFlow.times} but runs only a single async operation at a time.
*
* @name timesSeries
* @static
- * @memberOf module:async
+ * @memberOf module:ControlFlow
* @method
- * @see [async.times]{@link module:async.times}
+ * @see [async.times]{@link module:ControlFlow.times}
* @category Control Flow
* @param {number} n - The number of times to run the function.
* @param {Function} iteratee - The function to call `n` times. Invoked with the
* iteration index and a callback (n, next).
- * @param {Function} callback - see {@link async.map}.
+ * @param {Function} callback - see {@link module:Collections.map}.
*/
export default doLimit(timesLimit, 1);