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.