Merge: doc: fixed some typos and other misc. corrections
[nit.git] / tests / base_virtual_type2.nit
index b2fdef8..5f86a26 100644 (file)
@@ -19,11 +19,11 @@ import kernel
 class A
        type E: T
        
-       readable writable var _e: nullable E = null
+       var e: nullable E = null is writable
 end
 
 class B
-special A
+       super A
        init do end
 end
 
@@ -33,7 +33,7 @@ class T
 end
 
 class U
-special T
+       super T
        redef fun foo do 1.output
        init do end
 end