aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/type.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/library/lux/type.lux')
-rw-r--r--stdlib/source/library/lux/type.lux8
1 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/source/library/lux/type.lux b/stdlib/source/library/lux/type.lux
index 8bd91191c..f82207ad0 100644
--- a/stdlib/source/library/lux/type.lux
+++ b/stdlib/source/library/lux/type.lux
@@ -49,7 +49,7 @@
(case type
{.#Function in out'}
(.let [[ins out] (flat_function out')]
- [(list& in ins) out])
+ [(partial_list in ins) out])
_
[(list) type]))
@@ -69,7 +69,7 @@
(-> Type (List Type))
(case type
{<tag> left right}
- (list& left (<name> right))
+ (partial_list left (<name> right))
_
(list type)))]
@@ -234,12 +234,12 @@
(^.template [<tag>]
[{<tag> env body}
(|> body
- (reduced (list& func param env))
+ (reduced (partial_list func param env))
(applied params'))])
([.#UnivQ] [.#ExQ])
{.#Apply A F}
- (applied (list& A params) F)
+ (applied (partial_list A params) F)
{.#Named name unnamed}
(applied params unnamed)