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 2abee52 commit be41c57Copy full SHA for be41c57
src/Control/Bind.purs
@@ -56,7 +56,7 @@ infixl 1 bind as >>=
56
bindFlipped :: forall m a b. Bind m => (a -> m b) -> m a -> m b
57
bindFlipped = flip bind
58
59
-infixl 1 bindFlipped as =<<
+infixr 1 bindFlipped as =<<
60
61
instance bindFn :: Bind ((->) r) where
62
bind m f x = f (m x) x
0 commit comments