diff options
author | Eduardo Julian | 2017-05-19 23:52:18 -0400 |
---|---|---|
committer | Eduardo Julian | 2017-05-19 23:52:18 -0400 |
commit | 1ee8b9338fc61c916fecfae1bc30430d5e3c3fe6 (patch) | |
tree | 4023376f3ef0cf367c6adfcc48c39243cd69b7d0 | |
parent | 8bd1d1b3a4750b26f1540717839c1aa196f2a520 (diff) |
- (Slightly) changed the way Ident hashes get calculated.
-rw-r--r-- | stdlib/source/lux/data/ident.lux | 2 |
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))))) |