Simplify function descriptions. [ci skip]

This commit is contained in:
John-David Dalton
2015-11-10 23:34:53 -08:00
parent 55383b9de4
commit f0e8371997

View File

@@ -1327,7 +1327,7 @@
/*--------------------------------------------------------------------------*/ /*--------------------------------------------------------------------------*/
/** /**
* Create a new pristine `lodash` function using the given `context` object. * Create a new pristine `lodash` function using the `context` object.
* *
* @static * @static
* @memberOf _ * @memberOf _
@@ -3845,7 +3845,7 @@
} }
/** /**
* Creates a function that wraps `func` and invokes it with the optional `this` * Creates a function that wraps `func` to invoke it with the optional `this`
* binding of `thisArg`. * binding of `thisArg`.
* *
* @private * @private
@@ -4023,7 +4023,7 @@
} }
/** /**
* Creates a function that wraps `func` and invokes it with optional `this` * Creates a function that wraps `func` to invoke it with optional `this`
* binding of `thisArg`, partial application, and currying. * binding of `thisArg`, partial application, and currying.
* *
* @private * @private
@@ -4136,8 +4136,8 @@
} }
/** /**
* Creates the padding for `string` based on the given `length`. The `chars` * Creates the padding for `string` based on `length`. The `chars` string
* string is truncated if the number of characters exceeds `length`. * is truncated if the number of characters exceeds `length`.
* *
* @private * @private
* @param {string} string The string to create padding for. * @param {string} string The string to create padding for.
@@ -4162,7 +4162,7 @@
} }
/** /**
* Creates a function that wraps `func` and invokes it with the optional `this` * Creates a function that wraps `func` to invoke it with the optional `this`
* binding of `thisArg` and the `partials` prepended to those provided to * binding of `thisArg` and the `partials` prepended to those provided to
* the wrapper. * the wrapper.
* *
@@ -10325,9 +10325,8 @@
}); });
/** /**
* Creates an object that inherits from the given `prototype` object. If a * Creates an object that inherits from the `prototype` object. If a `properties`
* `properties` object is provided its own enumerable properties are assigned * object is provided its own enumerable properties are assigned to the created object.
* to the created object.
* *
* @static * @static
* @memberOf _ * @memberOf _