src & doc: change all remaining occurences of "special" by "super" keyword
[nit.git] / doc / developpez / poo / listings / type6_s.nit
index 69fec03..25acb5d 100644 (file)
@@ -12,12 +12,12 @@ end
 class Node end
 
 class XMLDocument 
-       special Graph 
+       super Graph 
 
        redef type NODE: XMLNode
 end
 
-class XMLNode special Node end
+class XMLNode super Node end
 
 var doc = new XMLDocument