Browse Source

fixed naming

pull/2246/head
Misha133 3 years ago
parent
commit
a39edcff22
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      docs/guides/int_framework/samples/intro/groupmodule.cs

+ 1
- 1
docs/guides/int_framework/samples/intro/groupmodule.cs View File

@@ -15,7 +15,7 @@ public class CommandGroupModule : InteractionModuleBase<SocketInteractionContext
//This command will look like
// group-name subcommand-group-name echo
[SlashCommand("echo", "Echo an input")]
public async Task PongSubcommand(string input)
public async Task EchoSubcommand(string input)
=> await RespondAsync(input);
}
}

Loading…
Cancel
Save