cleanup: remove old 'special' keyword
[nit.git] / doc / developpez / poo / listings / type1_c.nit
index 135b7b9..cf3ad76 100644 (file)
@@ -1,6 +1,6 @@
 abstract class Aliment end
 
-class Herbe special Aliment end
+class Herbe super Aliment end
 
 class Animal
        type REGIME: Aliment
@@ -9,7 +9,7 @@ class Animal
 end
 
 class Vache
-       special Animal
+       super Animal
 
        redef type REGIME: Herbe
 end