Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
KtorZ committed Dec 1, 2018
1 parent 45f7160 commit 15f8af5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion appendix_b.md
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,9 @@ class IO {
}

join() {
return this.unsafePerformIO();
return new IO(() => {
return this.unsafePerformIO().unsafePerformIO();
});
}
}
```
Expand Down

0 comments on commit 15f8af5

Please sign in to comment.