aboutsummaryrefslogtreecommitdiff
path: root/new-luxc/source/luxc/lang/host/macro.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--new-luxc/source/luxc/lang/host/macro.lux4
1 files changed, 2 insertions, 2 deletions
diff --git a/new-luxc/source/luxc/lang/host/macro.lux b/new-luxc/source/luxc/lang/host/macro.lux
index 01f8c3bdb..d557b6750 100644
--- a/new-luxc/source/luxc/lang/host/macro.lux
+++ b/new-luxc/source/luxc/lang/host/macro.lux
@@ -2,7 +2,7 @@
lux
(lux (control [monad #+ do])
(data ["e" error])
- [meta]
+ [macro]
[host])
(luxc (lang (translation [";T" common])))
[..])
@@ -22,7 +22,7 @@
(host;array-write +1 _object-class)))
(def: #export (expand macro inputs)
(-> Macro (List Code) (Meta (List Code)))
- (do meta;Monad<Meta>
+ (do macro;Monad<Meta>
[class (commonT;load-class ..;function-class)]
(function [compiler]
(do e;Monad<Error>