From 53bfafb84c93c50823fea4373628c4f472363f24 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Fri, 2 May 2014 22:49:36 -0700 Subject: [PATCH] Add doc note to `_.defaults` for a deep version. [ci skip] [closes #154] --- lodash.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lodash.js b/lodash.js index d30160081..9651ec14a 100644 --- a/lodash.js +++ b/lodash.js @@ -5726,6 +5726,9 @@ * object for all destination properties that resolve to `undefined`. Once a * property is set, additional defaults of the same property will be ignored. * + * Note: See the [documentation example of `_.partialRight`](http://lodash.com/docs#partialRight) + * for a deep version of this method. + * * @static * @memberOf _ * @category Objects