File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -981,7 +981,7 @@ instance Monad (BehaviorM x) where
981
981
982
982
instance MonadFail (BehaviorM x ) where
983
983
{-# INLINABLE fail #-}
984
- fail s = BehaviorM $ fail s
984
+ fail s = BehaviorM $ MonadFail. fail s
985
985
986
986
data BehaviorSubscribed x a
987
987
= forall p . BehaviorSubscribedHold (Hold x p )
@@ -2654,7 +2654,7 @@ instance Monad (SpiderHost x) where
2654
2654
2655
2655
instance MonadFail (SpiderHost x ) where
2656
2656
{-# INLINABLE fail #-}
2657
- fail s = SpiderHost $ fail s
2657
+ fail s = SpiderHost $ MonadFail. fail s
2658
2658
2659
2659
-- | Run an action affecting the global Spider timeline; this will be guarded by
2660
2660
-- a mutex for that timeline
@@ -2683,7 +2683,7 @@ instance Monad (SpiderHostFrame x) where
2683
2683
2684
2684
instance MonadFail (SpiderHostFrame x ) where
2685
2685
{-# INLINABLE fail #-}
2686
- fail s = SpiderHostFrame $ fail s
2686
+ fail s = SpiderHostFrame $ MonadFail. fail s
2687
2687
2688
2688
instance NotReady (SpiderTimeline x ) (SpiderHostFrame x ) where
2689
2689
notReadyUntil _ = pure ()
You can’t perform that action at this time.
0 commit comments