aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/control/parser/tree.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/library/lux/control/parser/tree.lux')
-rw-r--r--stdlib/source/library/lux/control/parser/tree.lux8
1 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/source/library/lux/control/parser/tree.lux b/stdlib/source/library/lux/control/parser/tree.lux
index 0208134a3..4c87f17f3 100644
--- a/stdlib/source/library/lux/control/parser/tree.lux
+++ b/stdlib/source/library/lux/control/parser/tree.lux
@@ -16,17 +16,17 @@
(//.Parser (Zipper t) a))
(def: .public (result' parser zipper)
- (All [t a] (-> (Parser t a) (Zipper t) (Try a)))
+ (All (_ t a) (-> (Parser t a) (Zipper t) (Try a)))
(do try.monad
[[zipper output] (//.result parser zipper)]
(in output)))
(def: .public (result parser tree)
- (All [t a] (-> (Parser t a) (Tree t) (Try a)))
+ (All (_ t a) (-> (Parser t a) (Tree t) (Try a)))
(result' parser (zipper.zipper tree)))
(def: .public value
- (All [t] (Parser t t))
+ (All (_ t) (Parser t t))
(function (_ zipper)
(#try.Success [zipper (zipper.value zipper)])))
@@ -34,7 +34,7 @@
(template [<name> <direction>]
[(def: .public <name>
- (All [t] (Parser t []))
+ (All (_ t) (Parser t []))
(function (_ zipper)
(case (<direction> zipper)
#.None