aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/data/format/html.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/lux/data/format/html.lux2
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/source/lux/data/format/html.lux b/stdlib/source/lux/data/format/html.lux
index e594b2232..e33e7d4ee 100644
--- a/stdlib/source/lux/data/format/html.lux
+++ b/stdlib/source/lux/data/format/html.lux
@@ -27,7 +27,7 @@
(def: attrs-to-text
(-> Attributes Text)
- (|>. (L/map (function [[key val]] (format key "=" "\"" (text val) "\"")))
+ (|>> (L/map (function [[key val]] (format key "=" "\"" (text val) "\"")))
(text;join-with " ")))
(def: #export (tag name attrs children)