aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/program/aedifex/parser.lux
diff options
context:
space:
mode:
authorEduardo Julian2021-08-27 20:59:34 -0400
committerEduardo Julian2021-08-27 20:59:34 -0400
commitc5b61d2f46ac19bf511197f3a537c4be0f47df33 (patch)
treecd62d188403e9b3998ba293dc5308719a430f1fe /stdlib/source/program/aedifex/parser.lux
parente814f667aed509a70bd386dcd54628929134def4 (diff)
Updates to the Ruby compiler.
Diffstat (limited to 'stdlib/source/program/aedifex/parser.lux')
-rw-r--r--stdlib/source/program/aedifex/parser.lux4
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/source/program/aedifex/parser.lux b/stdlib/source/program/aedifex/parser.lux
index 8ece73b51..21c8ac270 100644
--- a/stdlib/source/program/aedifex/parser.lux
+++ b/stdlib/source/program/aedifex/parser.lux
@@ -38,12 +38,12 @@
(list)))
(def: (singular input tag parser)
- (All [a] (-> (Dictionary Text Code) Text (Parser a) (Parser a)))
+ (All (_ a) (-> (Dictionary Text Code) Text (Parser a) (Parser a)))
(<code>.local (..as_input (dictionary.value tag input))
parser))
(def: (plural input tag parser)
- (All [a] (-> (Dictionary Text Code) Text (Parser a) (Parser (List a))))
+ (All (_ a) (-> (Dictionary Text Code) Text (Parser a) (Parser (List a))))
(<code>.local (..as_input (dictionary.value tag input))
(<code>.tuple (<>.some parser))))