From 4155e8e0ceffdcb024ae2d2ce258201e0a4c3042 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Wed, 7 May 2014 20:19:42 -0700 Subject: [PATCH] Add a doc note for iterating inherited properties to `_.bindAll` and `_.functions`. [ci skip] --- lodash.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lodash.js b/lodash.js index 54ca12a69..b193655d4 100644 --- a/lodash.js +++ b/lodash.js @@ -4947,8 +4947,8 @@ /** * Binds methods of an object to the object itself, overwriting the existing * method. Method names may be specified as individual arguments or as arrays - * of method names. If no method names are provided all the function properties - * of `object` will be bound. + * of method names. If no method names are provided all enumerable function + * properties, own and inherited, of `object` will be bound. * * Note: This method does not set the `length` property of bound functions. * @@ -6000,8 +6000,8 @@ } /** - * Creates a sorted array of property names of all enumerable properties, - * own and inherited, of `object` that have function values. + * Creates a sorted array of property names of all enumerable function + * properties, own and inherited, of `object`. * * @static * @memberOf _