Skip to content
This repository was archived by the owner on Sep 18, 2024. It is now read-only.

Commit e00ca48

Browse files
fix typo of aliases (#148)
1 parent abe0dff commit e00ca48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

commands/help.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ exports.run = (client, message, args, level) => {
4747
if (client.commands.has(command)) {
4848
command = client.commands.get(command);
4949
if (level < client.levelCache[command.conf.permLevel]) return;
50-
message.channel.send(codeBlock("asciidoc", `= ${command.help.name} = \n${command.help.description}\nusage:: ${command.help.usage}\nalises:: ${command.conf.aliases.join(", ")}`));
50+
message.channel.send(codeBlock("asciidoc", `= ${command.help.name} = \n${command.help.description}\nusage:: ${command.help.usage}\naliases:: ${command.conf.aliases.join(", ")}`));
5151
}
5252
}};
5353

0 commit comments

Comments
 (0)