aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/program/aedifex/parser.lux
diff options
context:
space:
mode:
authorEduardo Julian2021-09-12 00:07:08 -0400
committerEduardo Julian2021-09-12 00:07:08 -0400
commitdda05bca0956af5e5b3875c4cc36e61aa04772e4 (patch)
tree0f8b27697d58ab5c8e41aba7c7c9f769d3800767 /stdlib/source/program/aedifex/parser.lux
parentd48270f43c404ba19ca04da2553455ecaaf2caba (diff)
Made the "#" character great again!
Diffstat (limited to 'stdlib/source/program/aedifex/parser.lux')
-rw-r--r--stdlib/source/program/aedifex/parser.lux6
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/source/program/aedifex/parser.lux b/stdlib/source/program/aedifex/parser.lux
index b3239d4e2..b42553a8e 100644
--- a/stdlib/source/program/aedifex/parser.lux
+++ b/stdlib/source/program/aedifex/parser.lux
@@ -31,10 +31,10 @@
(def: (as_input input)
(-> (Maybe Code) (List Code))
(case input
- {#.Some input}
+ {.#Some input}
(list input)
- #.None
+ {.#None}
(list)))
(def: (singular input tag parser)
@@ -89,7 +89,7 @@
($_ <>.and
(..singular input "name" ..name)
(..singular input "url" ..url)
- (<>.else #/.Repo
+ (<>.else {/.#Repo}
(..singular input "type"
(<>.or (<code>.this! (' "repo"))
(<code>.this! (' "manual"))))))))