X-Git-Url: http://nitlanguage.org diff --git a/lib/standard/collection/sorter.nit b/lib/standard/collection/sorter.nit index 8240a0c..99c58a1 100644 --- a/lib/standard/collection/sorter.nit +++ b/lib/standard/collection/sorter.nit @@ -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