aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/tool/compiler.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/lux/tool/compiler.lux8
1 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/source/lux/tool/compiler.lux b/stdlib/source/lux/tool/compiler.lux
index b4fdd541e..e151c9e94 100644
--- a/stdlib/source/lux/tool/compiler.lux
+++ b/stdlib/source/lux/tool/compiler.lux
@@ -7,12 +7,12 @@
[collection
["." dictionary (#+ Dictionary)]]]
[world
- ["." file (#+ File)]]]
+ ["." file (#+ Path)]]]
[/
[meta
["." archive (#+ Archive)
[key (#+ Key)]
- [descriptor (#+ Module)]
+ [descriptor (#+ Descriptor Module)]
[document (#+ Document)]]]])
(type: #export Code
@@ -23,7 +23,7 @@
(type: #export Input
{#module Module
- #file File
+ #file Path
#hash Nat
#code Code})
@@ -34,7 +34,7 @@
{#dependencies (List Module)
#process (-> Archive
(Error (Either (Compilation d o)
- [(Document d) (Output o)])))})
+ [[Descriptor (Document d)] (Output o)])))})
(type: #export (Compiler d o)
(-> Input (Compilation d o)))