From bd7a6f265212624199fb0b2ddc8ece39759c63de Mon Sep 17 00:00:00 2001 From: Vitor Date: Sun, 9 Jan 2022 12:20:43 +0000 Subject: [PATCH] docs(SlashCommandSubcommands): updating old links from Discord developer portal (#7224) --- .../src/interactions/slashCommands/SlashCommandSubcommands.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/builders/src/interactions/slashCommands/SlashCommandSubcommands.ts b/packages/builders/src/interactions/slashCommands/SlashCommandSubcommands.ts index 08ff98097..89034a8b8 100644 --- a/packages/builders/src/interactions/slashCommands/SlashCommandSubcommands.ts +++ b/packages/builders/src/interactions/slashCommands/SlashCommandSubcommands.ts @@ -13,7 +13,7 @@ import type { ToAPIApplicationCommandOptions } from './SlashCommandBuilder'; /** * Represents a folder for subcommands * - * For more information, go to https://discord.com/developers/docs/interactions/slash-commands#subcommands-and-subcommand-groups + * For more information, go to https://discord.com/developers/docs/interactions/application-commands#subcommands-and-subcommand-groups */ @mix(SharedNameAndDescription) export class SlashCommandSubcommandGroupBuilder implements ToAPIApplicationCommandOptions { @@ -75,7 +75,7 @@ export interface SlashCommandSubcommandGroupBuilder extends SharedNameAndDescrip /** * Represents a subcommand * - * For more information, go to https://discord.com/developers/docs/interactions/slash-commands#subcommands-and-subcommand-groups + * For more information, go to https://discord.com/developers/docs/interactions/application-commands#subcommands-and-subcommand-groups */ @mix(SharedNameAndDescription, SharedSlashCommandOptions) export class SlashCommandSubcommandBuilder implements ToAPIApplicationCommandOptions {