diff options
author | Eduardo Julian | 2021-09-03 21:51:30 -0400 |
---|---|---|
committer | Eduardo Julian | 2021-09-03 21:51:30 -0400 |
commit | 891b1cfc82322f8017f0a4f6b707d6fe52024545 (patch) | |
tree | 957429c0a2ad850b3570492deabe054fb2ace63e /stdlib/source/program/compositor | |
parent | e76add6e6f904677f5c09bb2a66dce283f1b848a (diff) |
Unified tuple and record syntax.
Diffstat (limited to 'stdlib/source/program/compositor')
-rw-r--r-- | stdlib/source/program/compositor/export.lux | 8 | ||||
-rw-r--r-- | stdlib/source/program/compositor/static.lux | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/stdlib/source/program/compositor/export.lux b/stdlib/source/program/compositor/export.lux index a9c76f039..1da80fc55 100644 --- a/stdlib/source/program/compositor/export.lux +++ b/stdlib/source/program/compositor/export.lux @@ -34,10 +34,10 @@ (def: no_ownership tar.Ownership (let [commons (: tar.Owner - {#tar.name tar.anonymous - #tar.id tar.no_id})] - {#tar.user commons - #tar.group commons})) + [#tar.name tar.anonymous + #tar.id tar.no_id])] + [#tar.user commons + #tar.group commons])) (def: .public (library fs sources) (-> (file.System Async) (List Source) (Async (Try tar.Tar))) diff --git a/stdlib/source/program/compositor/static.lux b/stdlib/source/program/compositor/static.lux index 498842248..88f3ce65f 100644 --- a/stdlib/source/program/compositor/static.lux +++ b/stdlib/source/program/compositor/static.lux @@ -7,7 +7,7 @@ (type: .public Static (Record - {#host Target + [#host Target #host_module_extension Text #target Path - #artifact_extension Text})) + #artifact_extension Text])) |