From 85f1311615706bbffcea8072ddbee673aee45d61 Mon Sep 17 00:00:00 2001 From: Danial Raza Date: Fri, 16 Feb 2024 06:00:41 +0100 Subject: [PATCH] docs(ActionRow): fix deprecated link --- 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 0f14d971ec27..041224ee0c49 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),