From 5ee55c6c2e69272dd0336dce2a1e2b82a6a91010 Mon Sep 17 00:00:00 2001 From: quin lynch Date: Sat, 27 Nov 2021 06:45:36 -0400 Subject: [PATCH] add missing $ on docs Co-Authored-By: Liege72 <65319395+Liege72@users.noreply.github.com> --- docs/guides/interactions_framework/post_execution.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/interactions_framework/post_execution.md b/docs/guides/interactions_framework/post_execution.md index 7a5e34d05..f34ba5cfe 100644 --- a/docs/guides/interactions_framework/post_execution.md +++ b/docs/guides/interactions_framework/post_execution.md @@ -48,7 +48,7 @@ async Task SlashCommandExecuted (SlashCommandInfo arg1, Discord.IInteractionCont await arg2.Interaction.RespondAsync("Invalid number or arguments"); break; case InteractionCommandError.Exception: - await arg2.Interaction.RespondAsync("Command exception:{arg3.ErrorReason}"); + await arg2.Interaction.RespondAsync($"Command exception:{arg3.ErrorReason}"); break; case InteractionCommandError.Unsuccessful: await arg2.Interaction.RespondAsync("Command could not be executed");