diff options
author | Mike McNeil <mikermcneil@users.noreply.github.com> | 2016-10-13 22:47:10 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-13 22:47:10 -0500 |
commit | 4eb1707934a52b40faf71143ec7c57739a872ea5 (patch) | |
tree | 41517a2754036edcab40274347c27440ac67c4ba /lib | |
parent | d7f9edc9541d5c14cc7810994927cc1276385166 (diff) | |
download | async-4eb1707934a52b40faf71143ec7c57739a872ea5.tar.gz |
Verbiage: same as previous commit: use "value" instead of "result" for clarity
Diffstat (limited to 'lib')
-rw-r--r-- | lib/mapValues.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mapValues.js b/lib/mapValues.js index c3daa56..afc43f4 100644 --- a/lib/mapValues.js +++ b/lib/mapValues.js @@ -27,7 +27,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). * @example * |