summaryrefslogtreecommitdiff
path: root/Alpha.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Alpha.hs')
-rw-r--r--Alpha.hs2
1 files changed, 2 insertions, 0 deletions
diff --git a/Alpha.hs b/Alpha.hs
index 1da1f1a..619973c 100644
--- a/Alpha.hs
+++ b/Alpha.hs
@@ -159,6 +159,8 @@ infixl 1 />
bind :: Monad m => m a -> (a -> m b) -> m b
bind a f = a Prelude.>>= f
+{- HLINT ignore "Use +>" -}
+
(+>) :: Monad m => m a -> (a -> m b) -> m b
a +> b = a Prelude.>>= b