aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/data/format/xml.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/lux/data/format/xml.lux4
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/source/lux/data/format/xml.lux b/stdlib/source/lux/data/format/xml.lux
index 512438c56..f37a300a9 100644
--- a/stdlib/source/lux/data/format/xml.lux
+++ b/stdlib/source/lux/data/format/xml.lux
@@ -111,7 +111,7 @@
(def: attrs^
(Parser Attrs)
- (<| (:: <>.monad map (dictionary.from-list name.hash))
+ (<| (\ <>.monad map (dictionary.from-list name.hash))
<>.some
(<>.and (spaced^ attr-name^))
(<>.after (<text>.this "="))
@@ -257,7 +257,7 @@
[(#Node reference/tag reference/attrs reference/children)
(#Node sample/tag sample/attrs sample/children)]
(and (name\= reference/tag sample/tag)
- (:: (dictionary.equivalence text.equivalence) = reference/attrs sample/attrs)
+ (\ (dictionary.equivalence text.equivalence) = reference/attrs sample/attrs)
(n.= (list.size reference/children)
(list.size sample/children))
(|> (list.zip/2 reference/children sample/children)