diff --git a/src/structures/interfaces/InteractionResponses.js b/src/structures/interfaces/InteractionResponses.js index 3e9c2e64a..e18864d7e 100644 --- a/src/structures/interfaces/InteractionResponses.js +++ b/src/structures/interfaces/InteractionResponses.js @@ -177,13 +177,13 @@ class InteractionResponses { } /** - * Updates the original message whose button was pressed. - * @param {string|MessagePayload|WebhookEditMessageOptions} options The options for the reply + * Updates the original message of the component on which the interaction was received on. + * @param {string|MessagePayload|WebhookEditMessageOptions} options The options for the updated message * @returns {Promise} * @example * // Remove the components from the message * interaction.update({ - * content: "A button was clicked", + * content: "A component interaction was received", * components: [] * }) * .then(console.log)