Merge: doc: fixed some typos and other misc. corrections
[nit.git] / tests / error_prop_glob.nit
index 8010187..a96a09a 100644 (file)
@@ -16,7 +16,7 @@
 
 import end
 
-class Object
+interface Object
 end
 
 class A
@@ -26,6 +26,6 @@ class B
        fun toto do end
 end
 class C
-special A
-special B
+       super A
+       super B
 end