aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/type.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/lux/type.lux')
-rw-r--r--stdlib/source/lux/type.lux3
1 files changed, 2 insertions, 1 deletions
diff --git a/stdlib/source/lux/type.lux b/stdlib/source/lux/type.lux
index 5dd1e905f..be3b54eed 100644
--- a/stdlib/source/lux/type.lux
+++ b/stdlib/source/lux/type.lux
@@ -10,6 +10,7 @@
[number ("nat/." Codec<Text,Nat>)]
["." maybe]
[collection
+ ["." array]
["." list ("list/." Functor<List> Monoid<List> Fold<List>)]]]
["." macro
["." code]
@@ -334,7 +335,7 @@
(-> Nat Type Type)
(case level
0 elem-type
- _ (|> elem-type (array (dec level)) (list) (#.Primitive "#Array"))))
+ _ (|> elem-type (array (dec level)) (list) (#.Primitive array.array-type-name))))
(syntax: #export (:log! {input (p.or s.identifier
s.any)})