From 12a6b58614b1d720df3beb88cfff5a1f5eda463d Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sun, 25 May 2014 09:14:02 -0700 Subject: [PATCH] Fix `_.throttle` doc typo. [ci skip] --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index a5d712f3c..ffb21365f 100644 --- a/lodash.js +++ b/lodash.js @@ -5789,7 +5789,7 @@ * * // execute `renewToken` when the click event is fired, but not more than once every 5 minutes * var throttled = _.throttle(renewToken, 300000, { 'trailing': false }) - * jQuery('.interactive').on('click',); + * jQuery('.interactive').on('click', throttled); * * // cancelling a trailing throttled call * jQuery(window).on('popstate', throttled.cancel);