aboutsummaryrefslogtreecommitdiff
path: root/stdlib
diff options
context:
space:
mode:
authorEduardo Julian2017-05-19 23:52:18 -0400
committerEduardo Julian2017-05-19 23:52:18 -0400
commit1ee8b9338fc61c916fecfae1bc30430d5e3c3fe6 (patch)
tree4023376f3ef0cf367c6adfcc48c39243cd69b7d0 /stdlib
parent8bd1d1b3a4750b26f1540717839c1aa196f2a520 (diff)
- (Slightly) changed the way Ident hashes get calculated.
Diffstat (limited to 'stdlib')
-rw-r--r--stdlib/source/lux/data/ident.lux2
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/source/lux/data/ident.lux b/stdlib/source/lux/data/ident.lux
index 6e9a044e5..62b678ee4 100644
--- a/stdlib/source/lux/data/ident.lux
+++ b/stdlib/source/lux/data/ident.lux
@@ -49,4 +49,4 @@
(def: (hash [module name])
(let [(^open) text;Hash<Text>]
- (n.* (hash module) (hash name)))))
+ (n.+ (hash module) (hash name)))))