Skip to content

Commit b0f59e3

Browse files
authored
Update creating-context-menu-commands.md (#2061)
Fix typo Add missing semicolon
1 parent 5897dc5 commit b0f59e3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/guides/int_basics/application-commands/context-menu-commands/creating-context-menu-commands.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public async Task Client_Ready()
7070
7171
// Let's do our global commands
7272
var globalUserCommand = new UserCommandBuilder();
73-
globalCommand.WithName("Global User Command");
73+
globalUserCommand.WithName("Global User Command");
7474
var globalMessageCommand = new MessageCommandBuilder();
7575
globalMessageCommand.WithName("Global Message Command");
7676

@@ -89,7 +89,7 @@ public async Task Client_Ready()
8989
{
9090
globalUserCommand.Build(),
9191
globalMessageCommand.Build()
92-
})
92+
});
9393
}
9494
catch(ApplicationCommandException exception)
9595
{

0 commit comments

Comments
 (0)