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);