From 2bafd9dfa445d7f0792815b5d31695d89602c79d Mon Sep 17 00:00:00 2001 From: Still Hsu <341464@gmail.com> Date: Tue, 9 Oct 2018 02:38:59 +0800 Subject: [PATCH] Fix command handler sample typo --- docs/guides/commands/samples/intro/command_handler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/commands/samples/intro/command_handler.cs b/docs/guides/commands/samples/intro/command_handler.cs index efb31f9b9..b962cdd6c 100644 --- a/docs/guides/commands/samples/intro/command_handler.cs +++ b/docs/guides/commands/samples/intro/command_handler.cs @@ -49,7 +49,7 @@ public class CommandHandler // Keep in mind that result does not indicate a return value // rather an object stating if the command executed successfully. - var result = await _command.ExecuteAsync( + var result = await _commands.ExecuteAsync( context: context, argPos: argPos, services: null);