From 39bb7064e791da4aeaba04350035f779f21a7438 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Thu, 9 Jun 2016 12:26:43 -0700 Subject: [PATCH] Minor doc nits. [ci skip] --- lodash.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lodash.js b/lodash.js index a5c7a0aeb..122b6b4a8 100644 --- a/lodash.js +++ b/lodash.js @@ -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);