Fix spelling error in guild.ts

Fixed the extra uppercase letter in the comment for unban.
This commit is contained in:
TheBlueOompaLoompa
2020-11-25 20:45:47 -06:00
committed by GitHub
parent 4739a322c3
commit 1a4fe647e4

View File

@@ -564,7 +564,7 @@ export async function ban(guildID: string, id: string, options: BanOptions) {
);
}
/** Remove the ban for a user. REquires BAN_MEMBERS permission */
/** Remove the ban for a user. Requires BAN_MEMBERS permission */
export async function unban(guildID: string, id: string) {
const hasPerm = await botHasPermission(guildID, [Permissions.BAN_MEMBERS]);
if (!hasPerm) {