Skip to content

Commit 812550d

Browse files
committed
Drop unused type variable
1 parent 722186f commit 812550d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Node/FS/Async.purs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@ foreign import handleCallbackImpl
4646
\ if (err) f(left(err))();\
4747
\ else f(right(value))();\
4848
\ };\
49-
\}" :: forall eff a b. Fn3 (Error -> Either Error a)
50-
(a -> Either Error a)
51-
(Callback eff a)
52-
(JSCallback a)
49+
\}" :: forall eff a. Fn3 (Error -> Either Error a)
50+
(a -> Either Error a)
51+
(Callback eff a)
52+
(JSCallback a)
5353

5454
handleCallback :: forall eff a b. (Callback eff a) -> JSCallback a
5555
handleCallback cb = runFn3 handleCallbackImpl Left Right cb

0 commit comments

Comments
 (0)