aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/control/parser.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/lux/control/parser.lux6
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/source/lux/control/parser.lux b/stdlib/source/lux/control/parser.lux
index 259748caa..7397d03e0 100644
--- a/stdlib/source/lux/control/parser.lux
+++ b/stdlib/source/lux/control/parser.lux
@@ -12,7 +12,7 @@
[number
["n" nat]]
[collection
- ["." list ("#@." functor monoid)]]]])
+ ["." list ("#\." functor monoid)]]]])
(type: #export (Parser s a)
{#.doc "A generic parser."}
@@ -169,7 +169,7 @@
(do ..monad
[min (exactly n p)
extra (some p)]
- (wrap (list@compose min extra))))
+ (wrap (list\compose min extra))))
(def: #export (at-most n p)
{#.doc "Parse at most N times."}
@@ -208,7 +208,7 @@
(#.Some x)
(do !
[xs' (some (..and sep p))]
- (wrap (#.Cons x (list@map product.right xs'))))
+ (wrap (#.Cons x (list\map product.right xs'))))
)))
(def: #export (not p)