diff --git a/packages/discord.js/src/structures/AutoModerationRule.js b/packages/discord.js/src/structures/AutoModerationRule.js index 3fcbda2b7..860982e12 100644 --- a/packages/discord.js/src/structures/AutoModerationRule.js +++ b/packages/discord.js/src/structures/AutoModerationRule.js @@ -206,7 +206,8 @@ class AutoModerationRule extends Base { /** * Sets the allow list for this auto moderation rule. - * @param {string[]} allowList The allow list of this auto moderation rule + * @param {string[]} allowList The substrings that will be exempt from triggering + * {@link AutoModerationRuleTriggerType.Keyword} and {@link AutoModerationRuleTriggerType.KeywordPreset} * @param {string} [reason] The reason for changing the allow list of this auto moderation rule * @returns {Promise} */ @@ -216,7 +217,7 @@ class AutoModerationRule extends Base { /** * Sets the mention total limit for this auto moderation rule. - * @param {number} mentionTotalLimit The mention total limit of this auto moderation rule + * @param {number} mentionTotalLimit The total number of unique role and user mentions allowed per message * @param {string} [reason] The reason for changing the mention total limit of this auto moderation rule * @returns {Promise} */ @@ -246,7 +247,8 @@ class AutoModerationRule extends Base { /** * Sets the exempt roles for this auto moderation rule. - * @param {Collection|RoleResolvable[]} [exemptRoles] The exempt roles of this auto moderation rule + * @param {Collection|RoleResolvable[]} [exemptRoles] + * The roles that should not be affected by the auto moderation rule * @param {string} [reason] The reason for changing the exempt roles of this auto moderation rule * @returns {Promise} */ @@ -257,7 +259,7 @@ class AutoModerationRule extends Base { /** * Sets the exempt channels for this auto moderation rule. * @param {Collection|GuildChannelResolvable[]} [exemptChannels] - * The exempt channels of this auto moderation rule + * The channels that should not be affected by the auto moderation rule * @param {string} [reason] The reason for changing the exempt channels of this auto moderation rule * @returns {Promise} */