From ea117bfb7e04e1103eaf24208c06979ce8493129 Mon Sep 17 00:00:00 2001 From: vunsh Date: Sun, 9 Oct 2022 14:05:10 -0700 Subject: [PATCH] docs: update UserContextMenu documentation v13 (#8721) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: A. Román Co-authored-by: Noel --- src/structures/ContextMenuInteraction.js | 2 +- src/structures/UserContextMenuInteraction.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/structures/ContextMenuInteraction.js b/src/structures/ContextMenuInteraction.js index f4f6ef47d274..2ddcb9043d8a 100644 --- a/src/structures/ContextMenuInteraction.js +++ b/src/structures/ContextMenuInteraction.js @@ -22,7 +22,7 @@ class ContextMenuInteraction extends BaseCommandInteraction { ); /** - * 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/src/structures/UserContextMenuInteraction.js b/src/structures/UserContextMenuInteraction.js index 98dad00fc93d..ba857f35cd98 100644 --- a/src/structures/UserContextMenuInteraction.js +++ b/src/structures/UserContextMenuInteraction.js @@ -8,7 +8,7 @@ const ContextMenuInteraction = require('./ContextMenuInteraction'); */ class UserContextMenuInteraction extends ContextMenuInteraction { /** - * The user this interaction was sent from + * The target user from this interaction * @type {User} * @readonly */ @@ -17,7 +17,7 @@ class UserContextMenuInteraction extends ContextMenuInteraction { } /** - * The member this interaction was sent from + * The target member from this interaction * @type {?(GuildMember|APIGuildMember)} * @readonly */