From 8f59d4423fc1001520015d5ebe127b59eeb8cfb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Victor=20M=C3=B6ller?= Date: Thu, 4 May 2017 18:29:04 +0200 Subject: [PATCH] Fixed exemple calling old non existing function. --- docs/guides/commands/samples/command_handler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/commands/samples/command_handler.cs b/docs/guides/commands/samples/command_handler.cs index 71869415b..9adfcc71d 100644 --- a/docs/guides/commands/samples/command_handler.cs +++ b/docs/guides/commands/samples/command_handler.cs @@ -24,7 +24,7 @@ public class Program await InstallCommands(); await client.LoginAsync(TokenType.Bot, token); - await client.ConnectAsync(); + await client.StartAsync(); await Task.Delay(-1); }