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.
1 parent 57a0cc2 commit 2966912Copy full SHA for 2966912
src/Control/Monad/Aff.purs
@@ -107,7 +107,7 @@ module Control.Monad.Aff
107
apathize a = const unit <$> attempt a
108
109
-- | Compute `aff1`, followed by `aff2` regardless of whether `aff1` terminated successfully.
110
- finally :: forall e a. Aff e a -> Aff e Unit -> Aff e a
+ finally :: forall e a b. Aff e a -> Aff e b -> Aff e a
111
finally aff1 aff2 = do
112
x <- attempt aff1
113
aff2
0 commit comments