core: fix typos in doc of CircularArray
[nit.git] / lib / core / collection / hash_collection.nit
index c049332..25cf2b9 100644 (file)
@@ -21,7 +21,7 @@ redef class Map[K, V]
 end
 
 redef class Set[E]
-       # Get an instance of `HashMap[K, V]`, the default implementation
+       # Get an instance of `HashSet[E]`, the default implementation
        new do return new HashSet[E]
 end
 
@@ -273,7 +273,7 @@ class HashMap[K, V]
        # Build a list filled with the items of `coll`.
        init from(coll: Map[K, V]) do
                init
-               recover_with(coll)
+               add_all(coll)
        end
 
        redef var keys: RemovableCollection[K] = new HashMapKeys[K, V](self) is lazy