From d15162e878c4b1414107e3a62a4cdcb1e3552a66 Mon Sep 17 00:00:00 2001 From: Claudio Russo Date: Fri, 16 Feb 2024 12:14:17 +0000 Subject: [PATCH] Apply suggestions from code review --- collections/motoko/src/ZhenyaHashmap.mo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collections/motoko/src/ZhenyaHashmap.mo b/collections/motoko/src/ZhenyaHashmap.mo index 3b635290..19b7d8df 100644 --- a/collections/motoko/src/ZhenyaHashmap.mo +++ b/collections/motoko/src/ZhenyaHashmap.mo @@ -9,7 +9,7 @@ import Prim "mo:prim"; actor { stable let profiling = Profiling.init(); - let hash : HashMap.HashUtils = Map.n64hash; + let hash : HashMap.HashUtils = HashMap.n64hash; stable var map = HashMap.new(); let rand = Random.new(null, 42);