removing the extra newline that block comments take

This commit is contained in:
Jeremy Ashkenas
2011-09-18 17:19:09 -05:00
parent d2b0404188
commit 37705e712b
2 changed files with 2 additions and 2 deletions

View File

@@ -621,7 +621,7 @@
Comment.prototype.compileNode = function(o, level) {
var code;
code = '/*' + multident(this.comment, this.tab) + ("\n" + this.tab + "*/\n");
code = '/*' + multident(this.comment, this.tab) + ("\n" + this.tab + "*/");
if ((level || o.level) === LEVEL_TOP) code = o.indent + code;
return code;
};