Skip to content

Commit 371e981

Browse files
authored
Merge pull request #92 from purescript/bind-flipped-fixity
Fix fixity of (=<<)
2 parents 2abee52 + be41c57 commit 371e981

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Control/Bind.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ infixl 1 bind as >>=
5656
bindFlipped :: forall m a b. Bind m => (a -> m b) -> m a -> m b
5757
bindFlipped = flip bind
5858

59-
infixl 1 bindFlipped as =<<
59+
infixr 1 bindFlipped as =<<
6060

6161
instance bindFn :: Bind ((->) r) where
6262
bind m f x = f (m x) x

0 commit comments

Comments
 (0)