aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/type/resource.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/library/lux/type/resource.lux')
-rw-r--r--stdlib/source/library/lux/type/resource.lux8
1 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/source/library/lux/type/resource.lux b/stdlib/source/library/lux/type/resource.lux
index 9d562cbd4..d9ffdfea7 100644
--- a/stdlib/source/library/lux/type/resource.lux
+++ b/stdlib/source/library/lux/type/resource.lux
@@ -127,7 +127,7 @@
(# monad in [context []])))
(syntax: .public (exchange [swaps ..indices])
- (macro.with_identifiers [g!_ g!context g!!]
+ (macro.with_symbols [g!_ g!context g!!]
(case swaps
{.#End}
(in (list (` (~! no_op))))
@@ -135,7 +135,7 @@
{.#Item head tail}
(do [! meta.monad]
[.let [max_idx (list#mix n.max head tail)]
- g!inputs (<| (monad.all !) (list.repeated (++ max_idx)) (macro.identifier "input"))
+ g!inputs (<| (monad.all !) (list.repeated (++ max_idx)) (macro.symbol "input"))
.let [g!outputs (|> (monad.mix maybe.monad
(function (_ from to)
(do maybe.monad
@@ -166,9 +166,9 @@
(template [<name> <from> <to>]
[(syntax: .public (<name> [amount ..amount])
- (macro.with_identifiers [g!_ g!context g!!]
+ (macro.with_symbols [g!_ g!context g!!]
(do [! meta.monad]
- [g!keys (|> (macro.identifier "keys")
+ [g!keys (|> (macro.symbol "keys")
(list.repeated amount)
(monad.all !))]
(in (list (` (: (All ((~ g!_) (~ g!!) (~+ g!keys) (~ g!context))