aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/data/ident.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/lux/data/ident.lux')
-rw-r--r--stdlib/source/lux/data/ident.lux6
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/source/lux/data/ident.lux b/stdlib/source/lux/data/ident.lux
index 545b22a65..ab8f30ab6 100644
--- a/stdlib/source/lux/data/ident.lux
+++ b/stdlib/source/lux/data/ident.lux
@@ -4,7 +4,8 @@
[equivalence (#+ Equivalence)]
[codec (#+ Codec)]
hash]
- [data [text ("text/" Monoid<Text> Equivalence<Text>)]]])
+ [data
+ ["." text ("text/" Monoid<Text> Hash<Text>)]]])
## [Types]
## (type: Ident
@@ -49,5 +50,4 @@
(def: eq Equivalence<Ident>)
(def: (hash [module name])
- (let [(^open) text.Hash<Text>]
- (n/+ (hash module) (hash name)))))
+ (n/+ (text/hash module) (text/hash name))))