We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 781edf1 + 67ca4fc commit eddf851Copy full SHA for eddf851
src/Control/Monad/Aff.purs
@@ -121,7 +121,7 @@ later' n aff = runFn3 _setTimeout nonCanceler n aff
121
finally :: forall e a b. Aff e a -> Aff e b -> Aff e a
122
finally aff1 aff2 = do
123
x <- attempt aff1
124
- aff2
+ _ <- aff2
125
either throwError pure x
126
127
-- | Forks the specified asynchronous computation so subsequent computations
0 commit comments