Minor doc nits. [ci skip]

This commit is contained in:
John-David Dalton
2016-06-09 12:26:43 -07:00
parent 388bf6934d
commit 39bb7064e7

View File

@@ -9467,7 +9467,7 @@
* @example
*
* jQuery(element).on('click', _.before(5, addContactToList));
* // => allows adding up to 4 contacts to the list
* // => Allows adding up to 4 contacts to the list.
*/
function before(n, func) {
var result;
@@ -10028,7 +10028,7 @@
* var initialize = _.once(createApplication);
* initialize();
* initialize();
* // `initialize` invokes `createApplication` once
* // => `createApplication` is invoked once
*/
function once(func) {
return before(2, func);