From 2fde143c6b811457ddef865ad4cf6493e8a37a78 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Fri, 24 Apr 2020 21:36:41 -0400 Subject: [PATCH] Make dependencies take up less space --- commands/util/info.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/util/info.js b/commands/util/info.js index 3a02abf5..8f82d0fc 100644 --- a/commands/util/info.js +++ b/commands/util/info.js @@ -52,6 +52,6 @@ module.exports = class InfoCommand extends Command { return `[${dep[0]}](https://github.com/${repo[0]}/${repo[1].replace(/#(.+)/, '/tree/$1')})`; } return `[${dep[0]}](https://npmjs.com/${dep[0]})`; - }).join(', '); + }).join(' '); } };