From 1ee8b9338fc61c916fecfae1bc30430d5e3c3fe6 Mon Sep 17 00:00:00 2001 From: Eduardo Julian Date: Fri, 19 May 2017 23:52:18 -0400 Subject: - (Slightly) changed the way Ident hashes get calculated. --- stdlib/source/lux/data/ident.lux | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'stdlib') 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] - (n.* (hash module) (hash name))))) + (n.+ (hash module) (hash name))))) -- cgit v1.2.3