hash_collection: fix missing documentation warnings
authorAlexandre Terrasa <alexandre@moz-code.org>
Wed, 19 Nov 2014 02:35:48 +0000 (21:35 -0500)
committerAlexandre Terrasa <alexandre@moz-code.org>
Tue, 25 Nov 2014 21:12:06 +0000 (16:12 -0500)
Signed-off-by: Alexandre Terrasa <alexandre@moz-code.org>

lib/standard/collection/hash_collection.nit

index 6490024..e279de3 100644 (file)
@@ -344,6 +344,7 @@ private class HashMapNode[K: Object, V]
        private var value: V
 end
 
+# A `MapIterator` over a `HashMap`.
 class HashMapIterator[K: Object, V]
        super MapIterator[K, V]
        redef fun is_ok do return _node != null