JSDOC/Token.vala
authorAlan Knowles <alan@roojs.com>
Tue, 22 Sep 2015 09:26:44 +0000 (17:26 +0800)
committerAlan Knowles <alan@roojs.com>
Tue, 22 Sep 2015 09:26:44 +0000 (17:26 +0800)
JSDOC/Token.vala

index 9d50744..0bf409f 100644 (file)
@@ -73,7 +73,7 @@ namespace JSDOC
                     this.name,
                     this.data,
                     this.outData == null ? "" : this.outData
-            )
+            );
             
         }
         
@@ -84,7 +84,7 @@ namespace JSDOC
             
             var ret =  this.data ;
             
-            forach(var ai in this.items ) {
+            foreach(var ai in this.items ) {
                 
                 string str = "";
                 foreach( var it in ai) {
@@ -108,7 +108,7 @@ namespace JSDOC
             
             return this.prefix +   ret;
              
-        },
+        }
         /*
         toJS : function() {
             
@@ -126,5 +126,6 @@ namespace JSDOC
         public bool is(string what) {
             return this.name == what || this.type == what;
         }
-});
+    }
+}
   
\ No newline at end of file