Skip to content

Commit 67ca4fc

Browse files
committed
Avoid Discard constraint
1 parent 781edf1 commit 67ca4fc

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)