aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/program/aedifex/dependency.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/program/aedifex/dependency.lux')
-rw-r--r--stdlib/source/program/aedifex/dependency.lux10
1 files changed, 5 insertions, 5 deletions
diff --git a/stdlib/source/program/aedifex/dependency.lux b/stdlib/source/program/aedifex/dependency.lux
index 11c66941f..92fe6b7ce 100644
--- a/stdlib/source/program/aedifex/dependency.lux
+++ b/stdlib/source/program/aedifex/dependency.lux
@@ -18,24 +18,24 @@
[#artifact Artifact
#type Type]))
-(def: .public hash
+(def .public hash
(Hash Dependency)
(all product.hash
//.hash
text.hash
))
-(def: .public equivalence
+(def .public equivalence
(Equivalence Dependency)
(at hash equivalence))
-(def: .public order
+(def .public order
(Order Dependency)
(implementation
- (def: equivalence
+ (def equivalence
..equivalence)
- (def: (< reference subject)
+ (def (< reference subject)
(<| (or (//#< (the #artifact reference)
(the #artifact subject)))