aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/data/format/xml.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/lux/data/format/xml.lux')
-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 fbe088ae7..57af6cf37 100644
--- a/stdlib/source/lux/data/format/xml.lux
+++ b/stdlib/source/lux/data/format/xml.lux
@@ -155,7 +155,7 @@
(def: xml^
(l;Lexer XML)
(|> (l;rec
- (lambda [node^]
+ (function [node^]
(l;either text^
(spaced^
(do l;Monad<Lexer>
@@ -211,7 +211,7 @@
(-> Attrs Text)
(|> attrs
D;entries
- (L/map (lambda [[key value]]
+ (L/map (function [[key value]]
(format (write-tag key) "=" "\""(sanitize-value value) "\"")))
(text;join-with " ")))