aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/data/format/css.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/library/lux/data/format/css.lux6
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/source/library/lux/data/format/css.lux b/stdlib/source/library/lux/data/format/css.lux
index d86deb7e5..7ec9a0d35 100644
--- a/stdlib/source/library/lux/data/format/css.lux
+++ b/stdlib/source/library/lux/data/format/css.lux
@@ -67,7 +67,7 @@
with_unicode)
(list\map (function (_ [property value])
(format property ": " value ";")))
- (text.join_with /style.separator)
+ (text.interposed /style.separator)
(text.enclosed ["{" "}"])
(format "@font-face")
:abstraction)))
@@ -98,7 +98,7 @@
(format (/value.percentage (get@ #when frame)) " {"
(/style.inline (get@ #what frame))
"}")))
- (text.join_with ..css_separator))
+ (text.interposed ..css_separator))
"}")))
(template: (!compose <pre> <post>)
@@ -115,7 +115,7 @@
:representation
(text.all_split_by ..css_separator)
(list\map (|>> (format (/selector.selector (|> selector (combinator (/selector.tag "")))))))
- (text.join_with ..css_separator)
+ (text.interposed ..css_separator)
:abstraction))
(def: .public (dependent combinator selector style inner)