Merge: doc: fixed some typos and other misc. corrections
[nit.git] / tests / base_attr_init_val1.nit
index f92fdfe..c2082eb 100644 (file)
 import kernel
 
 class A
-       readable attr _i: Int = 1
+       var i: Int = 1
        init do end
 end
 
 class B
-       readable attr _a: A = new A
+       var a: A = new A
        init do end
 end