From b09dfd2329bb63e0bedc9b8d0b536469f698b60b Mon Sep 17 00:00:00 2001 From: Suneet Tipirneni <77477100+suneettipirneni@users.noreply.github.com> Date: Mon, 20 Dec 2021 15:00:17 -0500 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Rodry <38259440+ImRodry@users.noreply.github.com> --- src/structures/Interaction.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/structures/Interaction.js b/src/structures/Interaction.js index e6e129ce23cd..1f0567177172 100644 --- a/src/structures/Interaction.js +++ b/src/structures/Interaction.js @@ -76,13 +76,13 @@ class Interaction extends Base { this.memberPermissions = data.member?.permissions ? new Permissions(data.member.permissions).freeze() : null; /** - * The locale of the member who invoked this interaction + * The locale of the user who invoked this interaction * @type {string} */ this.locale = data.locale; /** - * The preferred locale from the guild this interaction was sent from + * The preferred locale from the guild this interaction was sent in * @type {?string} */ this.guildLocale = data.guild_locale ?? null;