From 352bd13e6f590e12d5e2e3be0cf836e929cef74b Mon Sep 17 00:00:00 2001 From: Yukine Date: Sat, 13 Jan 2018 13:52:25 +0100 Subject: [PATCH] fix typo in Error constants (#2243) * fix typo in Error constants * another one (#1) --- src/util/Constants.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/util/Constants.js b/src/util/Constants.js index bc67df35c..69e4f4995 100644 --- a/src/util/Constants.js +++ b/src/util/Constants.js @@ -657,7 +657,7 @@ exports.Colors = { * * CANNOT_PIN_MESSAGE_IN_OTHER_CHANNEL * * CANNOT_EXECUTE_ON_SYSTEM_MESSAGE * * BULK_DELETE_MESSAGE_TOO_OLD - * * INVITE_ACCEPTED_TO_GUILD_NOT_CONTANING_BOT + * * INVITE_ACCEPTED_TO_GUILD_NOT_CONTAINING_BOT * * REACTION_BLOCKED * @typedef {string} APIError */ @@ -703,7 +703,7 @@ exports.APIErrors = { CANNOT_PIN_MESSAGE_IN_OTHER_CHANNEL: 50019, CANNOT_EXECUTE_ON_SYSTEM_MESSAGE: 50021, BULK_DELETE_MESSAGE_TOO_OLD: 50034, - INVITE_ACCEPTED_TO_GUILD_NOT_CONTANING_BOT: 50036, + INVITE_ACCEPTED_TO_GUILD_NOT_CONTAINING_BOT: 50036, REACTION_BLOCKED: 90001, };