diff options
author | Eduardo Julian | 2021-05-18 00:45:15 -0400 |
---|---|---|
committer | Eduardo Julian | 2021-05-18 00:45:15 -0400 |
commit | 879d0560e9d09ca997bf81de498fe9740ef36434 (patch) | |
tree | 057c582c7eb82912f8caf38faeda9daa7fdeb495 /stdlib/source/lux/tool/compiler/meta/archive | |
parent | 76cc98f55ce571c5edb3d6ec7d2603651af19eca (diff) |
Got rid of the {}s in ":share" and made it pipe-able.
Diffstat (limited to 'stdlib/source/lux/tool/compiler/meta/archive')
-rw-r--r-- | stdlib/source/lux/tool/compiler/meta/archive/document.lux | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/stdlib/source/lux/tool/compiler/meta/archive/document.lux b/stdlib/source/lux/tool/compiler/meta/archive/document.lux index a8c656ff9..b60d77246 100644 --- a/stdlib/source/lux/tool/compiler/meta/archive/document.lux +++ b/stdlib/source/lux/tool/compiler/meta/archive/document.lux @@ -6,7 +6,7 @@ ["." try (#+ Try)] ["." exception (#+ exception:)] ["<>" parser - ["<b>" binary (#+ Parser)]]] + [binary (#+ Parser)]]] [data [collection ["." dictionary (#+ Dictionary)]] @@ -35,10 +35,11 @@ (key.signature key) document//signature) (#try.Success (:share [e] - {(Key e) - key} - {e - (:assume document//content)})) + (Key e) + key + + e + (:assume document//content))) (exception.throw ..invalid-signature [(key.signature key) document//signature])))) |