diff options
Diffstat (limited to '')
-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))))) |