From b0f59e3eb964c48805bb383fdb5f92e69611069b Mon Sep 17 00:00:00 2001 From: Rob Aguilar Date: Thu, 27 Jan 2022 08:50:26 -0500 Subject: [PATCH] Update creating-context-menu-commands.md (#2061) Fix typo Add missing semicolon --- .../context-menu-commands/creating-context-menu-commands.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/guides/int_basics/application-commands/context-menu-commands/creating-context-menu-commands.md b/docs/guides/int_basics/application-commands/context-menu-commands/creating-context-menu-commands.md index 4e6210ba8..254506ff3 100644 --- a/docs/guides/int_basics/application-commands/context-menu-commands/creating-context-menu-commands.md +++ b/docs/guides/int_basics/application-commands/context-menu-commands/creating-context-menu-commands.md @@ -70,7 +70,7 @@ public async Task Client_Ready() // Let's do our global commands var globalUserCommand = new UserCommandBuilder(); - globalCommand.WithName("Global User Command"); + globalUserCommand.WithName("Global User Command"); var globalMessageCommand = new MessageCommandBuilder(); globalMessageCommand.WithName("Global Message Command"); @@ -89,7 +89,7 @@ public async Task Client_Ready() { globalUserCommand.Build(), globalMessageCommand.Build() - }) + }); } catch(ApplicationCommandException exception) {