summaryrefslogtreecommitdiff
path: root/lib/mapSeries.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/mapSeries.js')
-rw-r--r--lib/mapSeries.js7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/mapSeries.js b/lib/mapSeries.js
index c241bef..24ce126 100644
--- a/lib/mapSeries.js
+++ b/lib/mapSeries.js
@@ -2,12 +2,13 @@ import mapLimit from './mapLimit';
import doLimit from './internal/doLimit';
/**
- * The same as `map` but runs only a single async operation at a time.
+ * The same as [`map`]{@link module:Collections.map} but runs only a single async operation at a time.
*
* @name mapSeries
* @static
- * @memberOf async
- * @see async.map
+ * @memberOf module:Collections
+ * @method
+ * @see [async.map]{@link module:Collections.map}
* @category Collection
* @param {Array|Object} coll - A collection to iterate over.
* @param {Function} iteratee - A function to apply to each item in `coll`.