diff --git a/src/structures/interfaces/InteractionResponses.js b/src/structures/interfaces/InteractionResponses.js index 6d99964a8..a73f582d0 100644 --- a/src/structures/interfaces/InteractionResponses.js +++ b/src/structures/interfaces/InteractionResponses.js @@ -147,7 +147,7 @@ class InteractionResponses { */ async editReply(options) { if (!this.deferred && !this.replied) throw new Error('INTERACTION_NOT_REPLIED'); - const message = await this.webhook.editMessage(options.messsage ?? '@original', options); + const message = await this.webhook.editMessage(options.message ?? '@original', options); this.replied = true; return message; } diff --git a/src/util/Util.js b/src/util/Util.js index bf9e9d44f..205e9a024 100644 --- a/src/util/Util.js +++ b/src/util/Util.js @@ -660,7 +660,7 @@ class Util extends null { } /** - * Resolves the maximum time a guild's thread channels should automatcally archive in case of no recent activity. + * Resolves the maximum time a guild's thread channels should automatically archive in case of no recent activity. * @param {Guild} guild The guild to resolve this limit from. * @deprecated This will be removed in the next major version. * @returns {number}