summaryrefslogtreecommitdiff
path: root/lib/mapValuesSeries.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/mapValuesSeries.js')
-rw-r--r--lib/mapValuesSeries.js9
1 files changed, 6 insertions, 3 deletions
diff --git a/lib/mapValuesSeries.js b/lib/mapValuesSeries.js
index 35f1c95..e9746a1 100644
--- a/lib/mapValuesSeries.js
+++ b/lib/mapValuesSeries.js
@@ -2,13 +2,16 @@ import mapValuesLimit from './mapValuesLimit';
import doLimit from './internal/doLimit';
/**
- * The same as `mapValues` but runs only a single async operation at a time.
+ * ```
+ * import mapValuesSeries from 'async/mapValuesSeries'
+ * ```
+ * The same as [`mapValues`]{@link module:Collections.mapValues} but runs only a single async operation at a time.
*
* @name mapValuesSeries
* @static
- * @memberOf module:async
+ * @memberOf module:Collections
* @method
- * @see [async.mapValues]{@link module:async.mapValues}
+ * @see [async.mapValues]{@link module:Collections.mapValues}
* @category Collection
* @param {Object} obj - A collection to iterate over.
* @param {Function} iteratee - A function to apply to each value in `obj`.