diff --git a/docs/guides/int_framework/samples/intro/groupmodule.cs b/docs/guides/int_framework/samples/intro/groupmodule.cs index 2db2ec18d..f0d992aff 100644 --- a/docs/guides/int_framework/samples/intro/groupmodule.cs +++ b/docs/guides/int_framework/samples/intro/groupmodule.cs @@ -1,19 +1,19 @@ -//You can put commands in groups +// You can put commands in groups [Group("group-name", "Group description")] public class CommandGroupModule : InteractionModuleBase { - //This command will look like - // group-name ping + // This command will look like + // group-name ping [SlashCommand("ping", "Get a pong")] public async Task PongSubcommand() => await RespondAsync("Pong!"); - //And even in sub-command groups + // And even in sub-command groups [Group("subcommand-group-name", "Subcommand group description")] public class SubСommandGroupModule : InteractionModuleBase { - //This command will look like - // group-name subcommand-group-name echo + // This command will look like + // group-name subcommand-group-name echo [SlashCommand("echo", "Echo an input")] public async Task EchoSubcommand(string input) => await RespondAsync(input);