aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/data/format/css/value.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/library/lux/data/format/css/value.lux')
-rw-r--r--stdlib/source/library/lux/data/format/css/value.lux16
1 files changed, 8 insertions, 8 deletions
diff --git a/stdlib/source/library/lux/data/format/css/value.lux b/stdlib/source/library/lux/data/format/css/value.lux
index c2fb914c2..0c8e8f70f 100644
--- a/stdlib/source/library/lux/data/format/css/value.lux
+++ b/stdlib/source/library/lux/data/format/css/value.lux
@@ -61,7 +61,7 @@
(let [raw (%.frac value)]
(if (f.< +0.0 value)
raw
- (|> raw (text.split_at 1) maybe.assume product.right))))
+ (|> raw (text.split_at 1) maybe.trusted product.right))))
(abstract: .public (Value brand)
{}
@@ -786,7 +786,7 @@
(def: (apply name inputs)
(-> Text (List Text) Value)
(|> inputs
- (text.join_with ..value_separator)
+ (text.interposed ..value_separator)
(text.enclosed ["(" ")"])
(format name)
:abstraction))
@@ -1042,7 +1042,7 @@
(|> blur (maybe.else ..default_shadow_length) :representation)
(|> spread (maybe.else ..default_shadow_length) :representation)
(:representation color))
- (text.join_with " ")
+ (text.interposed " ")
(list)
(..apply "drop-shadow")))
@@ -1119,7 +1119,7 @@
(|> spread (maybe.else ..default_shadow_length) :representation)
(:representation color)
with_inset)
- (text.join_with " ")
+ (text.interposed " ")
:abstraction)))
(type: .public Rectangle
@@ -1172,7 +1172,7 @@
(#.Item _)
(|> options
(list\map ..font_name)
- (text.join_with ",")
+ (text.interposed ",")
(:abstraction Value))
#.End
@@ -1212,9 +1212,9 @@
(:abstraction "."))]
(|>> (list\map (|>> (list\map (|>> (maybe.else empty)
:representation))
- (text.join_with ..grid_column_separator)
+ (text.interposed ..grid_column_separator)
(text.enclosed ["'" "'"])))
- (text.join_with ..grid_row_separator)
+ (text.interposed ..grid_row_separator)
:abstraction)))
(def: .public (resolution dpi)
@@ -1248,7 +1248,7 @@
(-> [Quote Quote] [Quote Quote] (Value Quotes))
(|> (list left0 right0 left1 right1)
(list\map (|>> ..quote_text %.text))
- (text.join_with ..quote_separator)
+ (text.interposed ..quote_separator)
:abstraction))
(def: .public (matrix_2d [a b] [c d] [tx ty])