Skip to content

Commit eddf851

Browse files
authored
Merge pull request #90 from mlang/Discard
Avoid Discard constraint
2 parents 781edf1 + 67ca4fc commit eddf851

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Control/Monad/Aff.purs

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ later' n aff = runFn3 _setTimeout nonCanceler n aff
121121
finally :: forall e a b. Aff e a -> Aff e b -> Aff e a
122122
finally aff1 aff2 = do
123123
x <- attempt aff1
124-
aff2
124+
_ <- aff2
125125
either throwError pure x
126126

127127
-- | Forks the specified asynchronous computation so subsequent computations

0 commit comments

Comments
 (0)