Skip to content

Commit

Permalink
Fix readme
Browse files Browse the repository at this point in the history
  • Loading branch information
brummelte committed Jul 30, 2016
1 parent 1aa4741 commit 6e941b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ let trace = value => {
sleep(2000)
.then(() => "hello")
.then(trace)
.then(sleep.delay(1000))
.then(sleep(1000))
.then(value => value + " world")
.then(trace)
.then(sleep.delay(500))
.then(sleep(500))
.then(value => value + "!")
.then(trace)

Expand Down

0 comments on commit 6e941b7

Please sign in to comment.