Issue #83 ... typo.

This commit is contained in:
Jeremy Ashkenas
2010-12-20 17:06:24 -05:00
parent 422d35438c
commit a890afec18

View File

@@ -734,7 +734,7 @@ $(window).scroll(throttled);
layout after the window has stopped being resized...
</p>
<pre>
var lazyLayout _.debounce(calculateLayout, 300);
var lazyLayout = _.debounce(calculateLayout, 300);
$(window).resize(lazyLayout);
</pre>