diff --git a/lodash.src.js b/lodash.src.js index a1e973a55..e48ffaa5b 100644 --- a/lodash.src.js +++ b/lodash.src.js @@ -5642,6 +5642,9 @@ * @returns {Object} Returns the new object. * @example * + * _.zipObject([['fred', 30], ['barney', 40]]); + * // => { 'fred': 30, 'barney': 40 } + * * _.zipObject(['fred', 'barney'], [30, 40]); * // => { 'fred': 30, 'barney': 40 } */