summaryrefslogtreecommitdiff
path: root/Alpha.hs
diff options
context:
space:
mode:
authorBen Sima <ben@bsima.me>2021-01-26 19:54:06 -0500
committerBen Sima <ben@bsima.me>2021-01-26 19:54:06 -0500
commit6c72ee7b29b5b69e93854fde67cbc7a53f998ed7 (patch)
tree3b7eb86c5a819c3d37b78be3820e643dd3c547fe /Alpha.hs
parent82dbbc0eed18c86aae1a8f1f92a0c98684e63409 (diff)
Refactor lint
- print results sequentially instead of all at once at the end - don't try and run all linters concurrently - filter out directories (can't lint those)
Diffstat (limited to 'Alpha.hs')
-rw-r--r--Alpha.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alpha.hs b/Alpha.hs
index 788a125..7da7161 100644
--- a/Alpha.hs
+++ b/Alpha.hs
@@ -133,7 +133,7 @@ infixr 0 <|
(|>) :: a -> (a -> b) -> b
f |> g = g f
-infixl 0 |>
+infixl 1 |>
-- | Alias for <&>. Can be read as "and then". Basically does into a
-- functor, does some computation, then returns the same kind of