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/aedifex/package.lux | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'stdlib/source/program/aedifex/package.lux') diff --git a/stdlib/source/program/aedifex/package.lux b/stdlib/source/program/aedifex/package.lux index 49aa2867e..54994e50b 100644 --- a/stdlib/source/program/aedifex/package.lux +++ b/stdlib/source/program/aedifex/package.lux @@ -30,9 +30,9 @@ (type: .public Package (Record - {#origin Origin + [#origin Origin #library [Binary Status] - #pom [XML Binary Status]})) + #pom [XML Binary Status]])) (template [ ] [(def: .public ( package) @@ -50,7 +50,7 @@ (def: .public (local pom library) (-> XML Binary Package) - {#origin (#//origin.Local "") + [#origin (#//origin.Local "") #library [library (#//status.Verified (//hash.sha-1 library) (//hash.md5 library))] @@ -58,7 +58,7 @@ [pom binary_pom (#//status.Verified (//hash.sha-1 binary_pom) - (//hash.md5 binary_pom))])}) + (//hash.md5 binary_pom))])]) (def: .public dependencies (-> Package (Try (Set Dependency))) -- cgit v1.2.3