We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc299fa commit 5502856Copy full SHA for 5502856
src/Type/Data/Boolean.purs
@@ -41,7 +41,7 @@ reifyBoolean false f = f (BProxy :: BProxy False)
41
class And (lhs :: Boolean)
42
(rhs :: Boolean)
43
(output :: Boolean) |
44
- lhs -> rhs output
+ lhs rhs -> output
45
instance andTrue :: And True rhs rhs
46
instance andFalse :: And False rhs False
47
@@ -52,7 +52,7 @@ and _ _ = BProxy
52
class Or (lhs :: Boolean)
53
54
55
56
instance orTrue :: Or True rhs True
57
instance orFalse :: Or False rhs rhs
58
0 commit comments