aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/type.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/lux/type.lux6
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/source/lux/type.lux b/stdlib/source/lux/type.lux
index 81ce70e3d..ac92dbc80 100644
--- a/stdlib/source/lux/type.lux
+++ b/stdlib/source/lux/type.lux
@@ -158,7 +158,7 @@
"Unknown type parameter" text.new-line
" Index: " (n@encode idx) text.new-line
"Environment: " (|> env
- list.enumerate
+ list.enumeration
(list@map (.function (_ [index type])
($_ text@compose
(n@encode index)
@@ -181,7 +181,7 @@
(n.= (list.size yparams) (list.size xparams))
(list@fold (.function (_ [x y] prev) (and prev (= x y)))
#1
- (list.zip2 xparams yparams)))
+ (list.zip/2 xparams yparams)))
(^template [<tag>]
[(<tag> xid) (<tag> yid)]
@@ -208,7 +208,7 @@
(= xbody ybody)
(list@fold (.function (_ [x y] prev) (and prev (= x y)))
#1
- (list.zip2 xenv yenv)))
+ (list.zip/2 xenv yenv)))
_
#0