summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike McNeil <mikermcneil@users.noreply.github.com>2016-10-13 22:46:33 -0500
committerGitHub <noreply@github.com>2016-10-13 22:46:33 -0500
commitd7f9edc9541d5c14cc7810994927cc1276385166 (patch)
treeb2474f16bf749af1a20e905a0a3fe25ddbd2299e
parentf321fe835fabc93896d0b0bcb0a350f1d2f45c69 (diff)
downloadasync-d7f9edc9541d5c14cc7810994927cc1276385166.tar.gz
verbiage: use "value" instead of "result" to avoid confusion and be more consistent with https://github.com/mikermcneil/async/blob/patch-1/lib/mapValuesLimit.js
-rw-r--r--lib/mapValuesSeries.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mapValuesSeries.js b/lib/mapValuesSeries.js
index 10c74ea..c1530c2 100644
--- a/lib/mapValuesSeries.js
+++ b/lib/mapValuesSeries.js
@@ -17,7 +17,7 @@ import doLimit from './internal/doLimit';
* transformed value. Invoked with (value, key, callback).
* @param {Function} [callback] - A callback which is called when all `iteratee`
* functions have finished, or an error occurs. `result` is a new object consisting
- * of each key from `obj`, with each transformed result on the right-hand side.
+ * of each key from `obj`, with each transformed value on the right-hand side.
* Invoked with (err, result).
*/
export default doLimit(mapValuesLimit, 1);