diff options
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/program/aedifex/dependency/resolution.lux | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/stdlib/source/program/aedifex/dependency/resolution.lux b/stdlib/source/program/aedifex/dependency/resolution.lux index d8c46d98c..eaefb1831 100644 --- a/stdlib/source/program/aedifex/dependency/resolution.lux +++ b/stdlib/source/program/aedifex/dependency/resolution.lux @@ -12,7 +12,7 @@ [control ["[0]" maybe] ["[0]" try (.only Try) (.use "[1]#[0]" functor)] - ["[0]" exception (.only Exception exception:)] + ["[0]" exception (.only Exception exception)] [concurrency ["[0]" async (.only Async)]]] [data @@ -58,9 +58,9 @@ ["[1]/[0]" snapshot]]]]) (with_template [<name>] - [(exception: .public (<name> [artifact Artifact - extension Extension - hash Text]) + [(exception .public (<name> [artifact Artifact + extension Extension + hash Text]) (exception.report "Artifact" (///artifact.format artifact) "Extension" (%.text extension) @@ -154,7 +154,7 @@ (Equivalence Resolution) (dictionary.equivalence ///package.equivalence)) -(exception: .public (cannot_resolve [dependency Dependency]) +(exception .public (cannot_resolve [dependency Dependency]) (exception.report "Artifact" (%.text (///artifact.format (the //.#artifact dependency))) "Type" (%.text (the //.#type dependency)))) |