aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/data/format/html.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/library/lux/data/format/html.lux6
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/source/library/lux/data/format/html.lux b/stdlib/source/library/lux/data/format/html.lux
index a96a6df84..419096680 100644
--- a/stdlib/source/library/lux/data/format/html.lux
+++ b/stdlib/source/library/lux/data/format/html.lux
@@ -70,11 +70,11 @@
(|> attributes
..attributes
(format tag " ")
- (text.enclose ["<" ">"])))
+ (text.enclosed ["<" ">"])))
(def: close
(-> Tag Text)
- (text.enclose ["</" ">"]))
+ (text.enclosed ["</" ">"]))
(abstract: #export (HTML brand)
Text
@@ -127,7 +127,7 @@
(def: #export (comment content node)
(All [brand] (-> Text (HTML brand) (HTML brand)))
(:abstraction
- (format (text.enclose ["<!--" "-->"] content)
+ (format (text.enclosed ["<!--" "-->"] content)
(:representation node))))
(def: (empty name attributes)