From f67da74a5aca929aa71d5b1ff040cef17eda7c62 Mon Sep 17 00:00:00 2001 From: Danial Raza Date: Fri, 23 Feb 2024 01:37:43 +0100 Subject: [PATCH] docs(ActionRow): fix deprecated message (#10130) docs(ActionRow): fix deprecated link Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com> --- packages/discord.js/src/structures/ActionRow.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/discord.js/src/structures/ActionRow.js b/packages/discord.js/src/structures/ActionRow.js index 0f14d971e..041224ee0 100644 --- a/packages/discord.js/src/structures/ActionRow.js +++ b/packages/discord.js/src/structures/ActionRow.js @@ -27,7 +27,7 @@ class ActionRow extends Component { * @memberof ActionRow * @param {ActionRowBuilder|ActionRow|APIActionRowComponent} other The other data * @returns {ActionRowBuilder} - * @deprecated Use {@link ActionRowBuilder.from} instead. + * @deprecated Use {@link ActionRowBuilder.from | ActionRowBuilder#from} instead. */ static from = deprecate( other => new this(isJSONEncodable(other) ? other.toJSON() : other),