Fix extraneous new line

dev/git-series/gccdum
Matt Godbolt 6 years ago
parent 7eb0d035c4
commit eb679d56c7

@ -406,7 +406,7 @@ function ApiHandler(compileHandler) {
var maxLength = _.max(_.pluck(_.pluck(this.compilers, 'id').concat([title]), 'length'));
res.write(utils.padRight(title, maxLength) + ' | Description\n');
res.end(_.map(this.compilers, function (compiler) {
return utils.padRight(compiler.id, maxLength) + ' | ' + compiler.name + '\n';
return utils.padRight(compiler.id, maxLength) + ' | ' + compiler.name;
}).join("\n"));
}
}, this));

Loading…
Cancel
Save