aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/control/eq.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/lux/control/eq.lux')
-rw-r--r--stdlib/source/lux/control/eq.lux4
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/source/lux/control/eq.lux b/stdlib/source/lux/control/eq.lux
index b69292daa..9e372bd58 100644
--- a/stdlib/source/lux/control/eq.lux
+++ b/stdlib/source/lux/control/eq.lux
@@ -5,13 +5,13 @@
(: (-> a a Bool)
=))
-(def: #export (seq left right)
+(def: #export (pair left right)
(All [l r] (-> (Eq l) (Eq r) (Eq [l r])))
(struct (def: (= [a b] [x y])
(and (:: left = a x)
(:: right = b y)))))
-(def: #export (alt left right)
+(def: #export (either left right)
(All [l r] (-> (Eq l) (Eq r) (Eq (| l r))))
(struct (def: (= a|b x|y)
(case [a|b x|y]