From eb679d56c7afeb2d34c090aedd84ca17eff54493 Mon Sep 17 00:00:00 2001 From: Matt Godbolt Date: Wed, 18 Jan 2017 08:47:07 -0600 Subject: [PATCH] Fix extraneous new line --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index 0f75a49b..676677fb 100755 --- a/app.js +++ b/app.js @@ -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));