Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
kolodny committed Jun 12, 2015
1 parent 6343113 commit 54a0bca
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions throttle/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ var sayHi = function() {

var throttled = throttle(sayHi, 100);

sayHi();
sayHi();
sayHi();
sayHi();
throttled();
throttled();
throttled();
throttled();

// there should only be one 'hi' message on the console
```
Expand Down

0 comments on commit 54a0bca

Please sign in to comment.