metamodel: rename 'universal' to 'enum'
[nit.git] / lib / standard / collection / sorter.nit
index 8240a0c..99c58a1 100644 (file)
@@ -89,7 +89,7 @@ end
 # This class uses the operator <=> to sort arrays.
 # You can also use the `sort' method of the `Array' class.
 class ComparableSorter[E: Comparable]
-special AbstractSorter[E]
+       super AbstractSorter[E]
        # Return a <=> b
        redef fun compare(a, b) do return a <=> b