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
86
86
are ignored, and if the computation produces an error, it is thrown.
87
87
88
88
Catching 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.
92
91
93
92
If you do need to handle exceptions, you can use ` runAff ` instead, or
94
93
you 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
68
68
-- | are ignored, and if the computation produces an error, it is thrown.
69
69
-- |
70
70
-- | 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.
74
73
-- |
75
74
-- | If you do need to handle exceptions, you can use `runAff` instead, or
76
75
-- | you can handle the exception within the Aff computation, using
You can’t perform that action at this time.
0 commit comments