From b8293838646b608e35ab4e5168e70ec4c7d9d658 Mon Sep 17 00:00:00 2001 From: jdalton Date: Sun, 8 Feb 2015 15:23:10 -0800 Subject: [PATCH] Cleanup docs for `_.callback`. [ci skip] --- lodash.src.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/lodash.src.js b/lodash.src.js index 387a36728..c7b92396c 100644 --- a/lodash.src.js +++ b/lodash.src.js @@ -10291,10 +10291,11 @@ } /** - * Creates a function bound to an optional `thisArg`. If `func` is a property - * name the created callback returns the property value for a given element. - * If `func` is an object the created callback returns `true` for elements - * that contain the equivalent object properties, otherwise it returns `false`. + * Creates a function that invokes `func` with the `this` binding of `thisArg` + * and arguments of the created function. If `func` is a property name the + * created callback returns the property value for a given element. If `func` + * is an object the created callback returns `true` for elements that contain + * the equivalent object properties, otherwise it returns `false`. * * @static * @memberOf _