diff options
Diffstat (limited to 'stdlib/source/library/lux/data/format/css/style.lux')
-rw-r--r-- | stdlib/source/library/lux/data/format/css/style.lux | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/source/library/lux/data/format/css/style.lux b/stdlib/source/library/lux/data/format/css/style.lux index eba1e112d..50df42453 100644 --- a/stdlib/source/library/lux/data/format/css/style.lux +++ b/stdlib/source/library/lux/data/format/css/style.lux @@ -15,11 +15,11 @@ (primitive .public Style Text - (def: .public empty + (def .public empty Style (abstraction "")) - (def: .public (with [property value]) + (def .public (with [property value]) (All (_ brand) (-> [(Property brand) (Value brand)] (-> Style Style))) @@ -27,11 +27,11 @@ (format (//property.name property) ": " (//value.value value) ";") abstraction)) - (def: .public inline + (def .public inline (-> Style Text) (|>> representation)) - (def: .public (style config) + (def .public (style config) (-> (List (Ex (_ brand) [(Property brand) (Value brand)])) Style) (list#mix ..with ..empty config)) |