diff --git a/packages/discord.js/src/structures/BaseInteraction.js b/packages/discord.js/src/structures/BaseInteraction.js index 6177fb29ed12..5278c6781381 100644 --- a/packages/discord.js/src/structures/BaseInteraction.js +++ b/packages/discord.js/src/structures/BaseInteraction.js @@ -53,7 +53,7 @@ class BaseInteraction extends Base { this.guildId = data.guild_id ?? null; /** - * The user which sent this interaction + * The user who created this interaction * @type {User} */ this.user = this.client.users._add(data.user ?? data.member.user); diff --git a/packages/discord.js/src/structures/ContextMenuCommandInteraction.js b/packages/discord.js/src/structures/ContextMenuCommandInteraction.js index 0f5d37ab4862..fc49ca56d3eb 100644 --- a/packages/discord.js/src/structures/ContextMenuCommandInteraction.js +++ b/packages/discord.js/src/structures/ContextMenuCommandInteraction.js @@ -25,7 +25,7 @@ class ContextMenuCommandInteraction extends CommandInteraction { ); /** - * The id of the target of the interaction + * The id of the target of this interaction * @type {Snowflake} */ this.targetId = data.data.target_id; diff --git a/packages/discord.js/src/structures/UserContextMenuCommandInteraction.js b/packages/discord.js/src/structures/UserContextMenuCommandInteraction.js index a074de1ad0a8..2e9dc7c62877 100644 --- a/packages/discord.js/src/structures/UserContextMenuCommandInteraction.js +++ b/packages/discord.js/src/structures/UserContextMenuCommandInteraction.js @@ -8,7 +8,7 @@ const ContextMenuCommandInteraction = require('./ContextMenuCommandInteraction') */ class UserContextMenuCommandInteraction extends ContextMenuCommandInteraction { /** - * The user this interaction was sent from + * The target user from this interaction * @type {User} * @readonly */ @@ -17,7 +17,7 @@ class UserContextMenuCommandInteraction extends ContextMenuCommandInteraction { } /** - * The member this interaction was sent from + * The target member from this interaction * @type {?(GuildMember|APIGuildMember)} * @readonly */