Skip to content

Commit f862907

Browse files
committed
Fix indentation failing when compiling with HEAD
1 parent 482dada commit f862907

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Control/Monad/Aff/Par.purs

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ instance applicativePar :: Applicative (Par e) where
4646
-- | Returns the first value, or the first error if both error.
4747
instance altPar :: Alt (Par e) where
4848
alt (Par a1) (Par a2) =
49-
let maybeKill va ve err =
50-
do e <- takeVar ve
49+
let maybeKill va ve err = do
50+
e <- takeVar ve
5151
if e == 1 then killVar va err else return unit
5252
putVar ve (e + 1)
5353
in Par do

0 commit comments

Comments
 (0)