From 1812d557b6491e65f873a7ede4ec568e1d719530 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sun, 25 May 2014 12:32:15 -0700 Subject: [PATCH] Minor doc nit. [ci skip] --- lodash.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lodash.js b/lodash.js index d6e9f3f76..22f7d3b0d 100644 --- a/lodash.js +++ b/lodash.js @@ -5457,7 +5457,7 @@ * 'maxWait': 1000 * }, false); * - * // cancelling a debounced call + * // cancel a debounced call * var todoChanges = _.debounce(batchLog, 1000); * Object.observe(models.todo, todoChanges); * @@ -5849,7 +5849,7 @@ * var throttled = _.throttle(renewToken, 300000, { 'trailing': false }) * jQuery('.interactive').on('click', throttled); * - * // cancelling a trailing throttled call + * // cancel a trailing throttled call * jQuery(window).on('popstate', throttled.cancel); */ function throttle(func, wait, options) {