lib: fix mismatch between keys and values formal types
[nit.git] / lib / standard / collection / abstract_collection.nit
index c3643b1..72adc03 100644 (file)
@@ -357,7 +357,7 @@ end
 
 # Iterator on a 'values' point of view of a map
 class MapValuesIterator[K: Object, V]
-       super Iterator[K]
+       super Iterator[V]
        # The original iterator
        var iterator: MapIterator[K, V]