aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/abstract/hash.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/library/lux/abstract/hash.lux')
-rw-r--r--stdlib/source/library/lux/abstract/hash.lux8
1 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/source/library/lux/abstract/hash.lux b/stdlib/source/library/lux/abstract/hash.lux
index 31a8d24b7..ef5df6022 100644
--- a/stdlib/source/library/lux/abstract/hash.lux
+++ b/stdlib/source/library/lux/abstract/hash.lux
@@ -13,14 +13,14 @@
(is (-> a Nat)
hash)))
-(def: .public functor
+(def .public functor
(contravariant.Functor Hash)
(implementation
- (def: (each f super)
+ (def (each f super)
(implementation
- (def: equivalence
+ (def equivalence
(at equivalence.functor each f
(at super equivalence)))
- (def: hash
+ (def hash
(|>> f (at super hash)))))))