From 3a225eada5f06fd7c3e146225d61c860a8db0a82 Mon Sep 17 00:00:00 2001 From: Alan Hogan Date: Fri, 23 Dec 2011 16:48:56 -0800 Subject: [PATCH] Typo --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 6d866454a..9ec7b5f88 100644 --- a/index.html +++ b/index.html @@ -798,7 +798,7 @@ _.defer(function(){ alert('deferred'); });
This method returns a function; it does not itself execute its first argument. You should call _.throttle - only once for each function you wish to debounce (not repeatedly!). + only once for each function you wish to throttle (not repeatedly!). It is the function returned from that once call to _.throttle that you should invoke on each occurrance of the event you wish to throttle.