Add a space between "Did You Mean" entries

This commit is contained in:
Dragon Fire
2020-03-23 12:20:51 -04:00
parent dda47265e8
commit d21bd422c6
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ module.exports = class UnknownCommandCommand extends Command {
return msg.reply(stripIndents`
Unknown command. Use ${msg.anyUsage('help', inGuild, inGuild)} to view the command list.
${results.length ? `Did You Mean: ${results.slice(0, 5).map(c => `\`${c}\``).join(',')}` : ''}
${results.length ? `Did You Mean: ${results.slice(0, 5).map(c => `\`${c}\``).join(', ')}` : ''}
`);
}