hash_collections: Fix the documentation of `Set::new`
authorJean-Christophe Beaupré <jcbrinfo@users.noreply.github.com>
Wed, 22 Mar 2017 20:34:56 +0000 (16:34 -0400)
committerJean-Christophe Beaupré <jcbrinfo@users.noreply.github.com>
Wed, 22 Mar 2017 20:34:56 +0000 (16:34 -0400)
Signed-off-by: Jean-Christophe Beaupré <jcbrinfo@users.noreply.github.com>

lib/core/collection/hash_collection.nit

index 6546b19..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