From cf3726478b7c332469d0c6cad301b1a020697215 Mon Sep 17 00:00:00 2001 From: Mike McNeil Date: Thu, 13 Oct 2016 22:47:10 -0500 Subject: [PATCH] Verbiage: same as previous commit: use "value" instead of "result" for clarity --- lib/mapValues.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/mapValues.js b/lib/mapValues.js index c3daa5637..afc43f482 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 *