diff --git a/hashmap/hashmap.mbt b/hashmap/hashmap.mbt index fbb67b926..02cc0b01b 100644 --- a/hashmap/hashmap.mbt +++ b/hashmap/hashmap.mbt @@ -254,7 +254,7 @@ fn next_index[K : Hash, V](self : HashMap[K, V], index : Int) -> Int { (index + 1) % self.capacity } -fn debug_entries[K : Debug + Show, V : Debug + Show]( +fn debug_entries[K : Show, V : Show]( self : HashMap[K, V] ) -> String { let mut s = ""