Skip to content

Commit b472f7f

Browse files
committed
Merge pull request #51 from DavidLindbom/master
Fix failing indentation
2 parents 482dada + f862907 commit b472f7f

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)