JSDOC/TextStream.vala
authorAlan Knowles <alan@roojs.com>
Thu, 10 Sep 2015 09:53:32 +0000 (17:53 +0800)
committerAlan Knowles <alan@roojs.com>
Thu, 10 Sep 2015 09:53:32 +0000 (17:53 +0800)
JSDOC/TextStream.vala

index 599ed8b..5f021e4 100644 (file)
@@ -47,7 +47,7 @@ namespace JSDOC {
                 return null;
             }
                 
-            var pulled = "";
+            char pulled;
             for (var i = 0; i < n; i++) {
                 if (this.cursor+i < this.text.length) {
                     pulled += this.text.charAt(this.cursor+i);