Merge: doc: fixed some typos and other misc. corrections
[nit.git] / tests / example_beer.nit
index 9380c88..3d99198 100644 (file)
@@ -29,7 +29,7 @@ private
 end
 
 class OneBottle
-special Bottle
+       super Bottle
        redef fun sing
        do
                sing_start
@@ -45,7 +45,7 @@ special Bottle
 end
 
 class TwoBottles
-special Bottle
+       super Bottle
        redef fun sing
        do
                sing_start
@@ -61,7 +61,7 @@ special Bottle
 end
 
 class Bottles
-special Bottle
+       super Bottle
 
        redef fun sing
        do
@@ -79,7 +79,7 @@ special Bottle
                _quantity = i
        end
 
-       var _quantity: Int
+       var quantity: Int
 end
 
 var i = 99