From cc7575adabffaa1f5ce3a96a6efba35a5c2afc92 Mon Sep 17 00:00:00 2001 From: Scott Shepherd Date: Thu, 5 Dec 2013 09:14:58 -0500 Subject: [PATCH] added oneToMany option to _.invert() --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index 527eba2bd..15e7911d8 100644 --- a/lodash.js +++ b/lodash.js @@ -2540,7 +2540,7 @@ * @memberOf _ * @category Objects * @param {Object} object The object to invert. - * @param {boolean} oneToMany allow multiple values for each key in the inverted result + * @param {boolean} oneToMany Allow multiple values for each key in the inverted result * @returns {Object} Returns the created inverted object. * @example *