From 891b1cfc82322f8017f0a4f6b707d6fe52024545 Mon Sep 17 00:00:00 2001 From: Eduardo Julian Date: Fri, 3 Sep 2021 21:51:30 -0400 Subject: Unified tuple and record syntax. --- stdlib/source/program/compositor/export.lux | 8 ++++---- stdlib/source/program/compositor/static.lux | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'stdlib/source/program/compositor') 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])) -- cgit v1.2.3