We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6ec199 commit 0c815bfCopy full SHA for 0c815bf
1 file changed
src/Data/Functor/Of.hs
@@ -78,7 +78,7 @@ instance Monoid a => Applicative (Of a) where
78
instance Monoid a => Monad (Of a) where
79
return = pure
80
{-#INLINE return #-}
81
- (m :> _) >> (m' :> y) = mappend m m' :> y
+ (>>) = (*>)
82
{-#INLINE (>>) #-}
83
(m :> x) >>= f = let m' :> y = f x in mappend m m' :> y
84
{-#INLINE (>>=) #-}
0 commit comments