mirror of
https://github.com/jashkenas/coffeescript.git
synced 2026-05-03 03:00:14 -04:00
removing the extra newline that block comments take
This commit is contained in:
@@ -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;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user