diff --git a/docs/guides/getting_started/samples/first-bot/client.cs b/docs/guides/getting_started/samples/first-bot/client.cs index a2fcef256..bced2224d 100644 --- a/docs/guides/getting_started/samples/first-bot/client.cs +++ b/docs/guides/getting_started/samples/first-bot/client.cs @@ -12,7 +12,8 @@ public async Task MainAsync() // environment variables, you may find more information on the // Internet or by using other methods such as reading from // a configuration. - await _client.LoginAsync(TokenType.Bot, Environment.GetEnvironmentVariable("DiscordToken")); + await _client.LoginAsync(TokenType.Bot, + Environment.GetEnvironmentVariable("DiscordToken")); await _client.StartAsync(); // Block this task until the program is closed. diff --git a/docs/guides/getting_started/samples/first-bot/complete.cs b/docs/guides/getting_started/samples/first-bot/complete.cs index 1b4a67ef3..3a7cb061d 100644 --- a/docs/guides/getting_started/samples/first-bot/complete.cs +++ b/docs/guides/getting_started/samples/first-bot/complete.cs @@ -10,7 +10,8 @@ public class Program _client = new DiscordSocketClient(); _client.Log += Log; _client.MessageReceived += MessageReceivedAsync; - await _client.LoginAsync(TokenType.Bot, Environment.GetEnvironmentVariable("DiscordToken")); + await _client.LoginAsync(TokenType.Bot, + Environment.GetEnvironmentVariable("DiscordToken")); await _client.StartAsync(); // Block this task until the program is closed.