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 d0924e6 commit 4544746Copy full SHA for 4544746
src/Control/Monad/Except/Trans.purs
@@ -52,7 +52,7 @@ instance bindExceptT :: (Monad m) => Bind (ExceptT e m) where
52
53
instance monadExceptT :: (Monad m) => Monad (ExceptT e m)
54
55
-instance monadRecErrorT :: (Semigroup e, MonadRec m) => MonadRec (ExceptT e m) where
+instance monadRecErrorT :: (MonadRec m) => MonadRec (ExceptT e m) where
56
tailRecM f = ExceptT <<< tailRecM \a -> do
57
m <- runExceptT (f a)
58
return case m of
0 commit comments