Skip to content

Commit 5502856

Browse files
authored
Fix Boolean fun deps (#37)
1 parent cc299fa commit 5502856

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Type/Data/Boolean.purs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ reifyBoolean false f = f (BProxy :: BProxy False)
4141
class And (lhs :: Boolean)
4242
(rhs :: Boolean)
4343
(output :: Boolean) |
44-
lhs -> rhs output
44+
lhs rhs -> output
4545
instance andTrue :: And True rhs rhs
4646
instance andFalse :: And False rhs False
4747

@@ -52,7 +52,7 @@ and _ _ = BProxy
5252
class Or (lhs :: Boolean)
5353
(rhs :: Boolean)
5454
(output :: Boolean) |
55-
lhs -> rhs output
55+
lhs rhs -> output
5656
instance orTrue :: Or True rhs True
5757
instance orFalse :: Or False rhs rhs
5858

0 commit comments

Comments
 (0)