From 67e799ccb216c4ea1baf1b22b7689db9bc58bcfc Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Fri, 23 Oct 2015 23:05:22 -0700 Subject: [PATCH] Correct jsdoc param indicators for `_.omit` and `_.pick`. [ci skip] --- lodash.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lodash.js b/lodash.js index d32ab9a57..0e028d2c7 100644 --- a/lodash.js +++ b/lodash.js @@ -10607,7 +10607,7 @@ * @memberOf _ * @category Object * @param {Object} object The source object. - * @param {string|string[]} [props] The property names to omit, specified + * @param {...(string|string[])} [props] The property names to omit, specified * individually or in arrays.. * @returns {Object} Returns the new object. * @example @@ -10677,7 +10677,7 @@ * @memberOf _ * @category Object * @param {Object} object The source object. - * @param {string|string[]} [props] The property names to pick, specified + * @param {...(string|string[])} [props] The property names to pick, specified * individually or in arrays. * @returns {Object} Returns the new object. * @example