diff options
author | Eduardo Julian | 2022-07-02 05:38:27 -0400 |
---|---|---|
committer | Eduardo Julian | 2022-07-02 05:38:27 -0400 |
commit | b96beb587c11fcfbce86ce2d62351600cf6cad1b (patch) | |
tree | c9a558ab1391ac97cb11e8777ea78299f1ab5555 /stdlib/source/format | |
parent | 104130efba46a875eba566384578f8aa8593ad37 (diff) |
More traditional names for unquoting macros.
Diffstat (limited to 'stdlib/source/format')
-rw-r--r-- | stdlib/source/format/lux/data/text.lux | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/source/format/lux/data/text.lux b/stdlib/source/format/lux/data/text.lux index 6dda0729b..531bd282b 100644 --- a/stdlib/source/format/lux/data/text.lux +++ b/stdlib/source/format/lux/data/text.lux @@ -50,7 +50,7 @@ (def .public format (syntax (_ [fragments (<>.many <code>.any)]) - (in (.list (` (all "lux text concat" (~+ fragments))))))) + (in (.list (` (all "lux text concat" (,* fragments))))))) (with_template [<name> <type> <formatter>] [(def .public <name> @@ -87,7 +87,7 @@ (Format <type>) (at <codec> encoded))] - (~~ (template.spliced <format>,<codec>))))] + (,, (template.spliced <format>,<codec>))))] [Nat [[nat_2 nat.binary] |