Skip to content
This repository was archived by the owner on Oct 4, 2020. It is now read-only.

Commit 497bae7

Browse files
committed
Update for English type class members
1 parent 04683de commit 497bae7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Control/Monad/Eff.purs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,16 +49,16 @@ foreign import runPure
4949
""" :: forall a. Pure a -> a
5050

5151
instance functorEff :: Functor (Eff e) where
52-
(<$>) = liftA1
52+
map = liftA1
5353

5454
instance applyEff :: Apply (Eff e) where
55-
(<*>) = ap
55+
apply = ap
5656

5757
instance applicativeEff :: Applicative (Eff e) where
5858
pure = returnE
5959

6060
instance bindEff :: Bind (Eff e) where
61-
(>>=) = bindE
61+
bind = bindE
6262

6363
instance monadEff :: Monad (Eff e)
6464

0 commit comments

Comments
 (0)