JSDOC/Scope.js
authorAlan Knowles <alan@roojs.com>
Mon, 11 Jan 2016 08:51:00 +0000 (16:51 +0800)
committerAlan Knowles <alan@roojs.com>
Mon, 11 Jan 2016 08:51:00 +0000 (16:51 +0800)
JSDOC/Scope.js

index 6a35e83..11b72df 100644 (file)
@@ -62,8 +62,8 @@ Scope.prototype = {
     {
         indent = indent || '';
         print(
-            indent +  "Scope: " + this.id + "\n" +
-            indent + " Started: " + ( this.token ? this.token.line  : 'TOP' ) + "\n" +
+            indent + "Scope: " + this.id + "\n" +
+            indent + "Started: " + ( this.token ? this.token.line  : 'TOP' ) + "\n" +
             indent + "- " + XObject.keys(this.identifiers).join(", ") + "\n"
         );
         this.subScopes.forEach(function(s) {