aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/meta/configuration.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/library/lux/meta/configuration.lux')
-rw-r--r--stdlib/source/library/lux/meta/configuration.lux8
1 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/source/library/lux/meta/configuration.lux b/stdlib/source/library/lux/meta/configuration.lux
index 372189c39..54bb66630 100644
--- a/stdlib/source/library/lux/meta/configuration.lux
+++ b/stdlib/source/library/lux/meta/configuration.lux
@@ -61,10 +61,10 @@
(def: .public parser
(Parser Configuration)
- (let [parser' (: (Parser Text)
- (<| (<>.after (<text>.this ..start))
- (<>.before (<text>.this ..end))
- (<text>.slice (<text>.some! (<text>.none_of! ..end)))))]
+ (let [parser' (is (Parser Text)
+ (<| (<>.after (<text>.this ..start))
+ (<>.before (<text>.this ..end))
+ (<text>.slice (<text>.some! (<text>.none_of! ..end)))))]
(<>.some (<>.and parser' parser'))))
(exception: .public invalid)