Merge: doc: fixed some typos and other misc. corrections
[nit.git] / tests / test_create.nit
index b25b637..0eee185 100644 (file)
@@ -24,7 +24,7 @@ redef class Object
 end
 
 class Toto
-       var _a: Int
+       var a: Int is noinit
        redef fun output
        do
                printn(_a)
@@ -47,7 +47,7 @@ class Toto
 end
 
 class Test
-       var _t: Toto
+       var t: Toto is noinit
 
        init
        do