Merge: doc: fixed some typos and other misc. corrections
[nit.git] / tests / base_var_assignment_flow.nit
index bd0be76..bab71d0 100644 (file)
@@ -20,11 +20,11 @@ interface Object
        fun output is abstract
 end
 
-universal Int
+enum Int
        redef fun output is intern
 end
 
-universal Bool
+enum Bool
        redef fun output is intern
 end
 
@@ -40,9 +40,9 @@ b.output
 
 var c: Object
 if maybe then
-       c = 2 #!alt2# #!alt4#
+       c = 2 #alt2# #alt4#
 else
-       c = 2 #!alt3# #!alt4#
+       c = 2 #alt3# #alt4#
 end
 c.output