Skip to content

Commit

Permalink
removing over-indentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
jashkenas committed May 22, 2012
1 parent 74f86a6 commit 658f921
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/functions.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,8 @@ $(document).ready(function() {
asyncTest("functions: throttle recursively", 1, function() {
var counter = 0;
var incr = _.throttle(function() {
counter++;
if (counter < 5) incr();
counter++;
if (counter < 5) incr();
}, 100);
incr();
_.delay(function(){ equal(counter, 3, "incr was throttled"); start(); }, 220);
Expand Down

0 comments on commit 658f921

Please sign in to comment.