No line break here looks better

This commit is contained in:
Dragon Fire
2020-03-01 15:00:13 -05:00
parent 23c61a9833
commit 5580376eed
+1 -1
View File
@@ -23,7 +23,7 @@ module.exports = class UnknownCommandCommand extends Command {
return msg.reply(stripIndents`
Unknown command. Use ${msg.anyUsage('help', inGuild, inGuild)} to view the command list.
${didYouMean && didYouMean.length ? `Did You Mean:\n${didYouMean.map(c => `\`${c}\``).join(',')}` : ''}
${didYouMean && didYouMean.length ? `Did You Mean: ${didYouMean.map(c => `\`${c}\``).join(',')}` : ''}
`);
}
};