From 1a4fe647e4c7d6718abff484e166613115d1c7f6 Mon Sep 17 00:00:00 2001 From: TheBlueOompaLoompa <53215039+TheBlueOompaLoompa@users.noreply.github.com> Date: Wed, 25 Nov 2020 20:45:47 -0600 Subject: [PATCH] Fix spelling error in guild.ts Fixed the extra uppercase letter in the comment for unban. --- src/handlers/guild.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/handlers/guild.ts b/src/handlers/guild.ts index bb96903fd..ea09d08c2 100644 --- a/src/handlers/guild.ts +++ b/src/handlers/guild.ts @@ -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) {