aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/program/aedifex/input.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/input.lux
parentd48270f43c404ba19ca04da2553455ecaaf2caba (diff)
Made the "#" character great again!
Diffstat (limited to 'stdlib/source/program/aedifex/input.lux')
-rw-r--r--stdlib/source/program/aedifex/input.lux8
1 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/source/program/aedifex/input.lux b/stdlib/source/program/aedifex/input.lux
index aa76979a8..024c4d0b2 100644
--- a/stdlib/source/program/aedifex/input.lux
+++ b/stdlib/source/program/aedifex/input.lux
@@ -36,11 +36,11 @@
syntax.no_aliases
(text.size source_code))]
(case (parse [location.dummy 0 source_code])
- {#.Left [_ error]}
- {#try.Failure error}
+ {.#Left [_ error]}
+ {try.#Failure error}
- {#.Right [_ lux_code]}
- {#try.Success lux_code})))
+ {.#Right [_ lux_code]}
+ {try.#Success lux_code})))
(def: project_parser
(-> Binary (Try Project))