File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -86,9 +86,8 @@ Converts the asynchronous computation into a synchronous one. All values
8686are ignored, and if the computation produces an error, it is thrown.
8787
8888Catching exceptions by using ` catchException ` with the resulting Eff
89- computation is not recommended, as exceptions may end up being thrown in
90- a different thread, due to the asynchronous nature of Aff. In such a
91- case, the exception cannot be caught.
89+ computation is not recommended, as exceptions may end up being thrown
90+ asynchronously, in which case they cannot be caught.
9291
9392If you do need to handle exceptions, you can use ` runAff ` instead, or
9493you can handle the exception within the Aff computation, using
Original file line number Diff line number Diff line change @@ -68,9 +68,8 @@ module Control.Monad.Aff
6868 -- | are ignored, and if the computation produces an error, it is thrown.
6969 -- |
7070 -- | Catching exceptions by using `catchException` with the resulting Eff
71- -- | computation is not recommended, as exceptions may end up being thrown in
72- -- | a different thread, due to the asynchronous nature of Aff. In such a
73- -- | case, the exception cannot be caught.
71+ -- | computation is not recommended, as exceptions may end up being thrown
72+ -- | asynchronously, in which case they cannot be caught.
7473 -- |
7574 -- | If you do need to handle exceptions, you can use `runAff` instead, or
7675 -- | you can handle the exception within the Aff computation, using
You can’t perform that action at this time.
0 commit comments