From 93ccfd2282d39e1e54bee0f143b828071a2f5502 Mon Sep 17 00:00:00 2001 From: Still Hsu <341464@gmail.com> Date: Wed, 6 Feb 2019 01:57:56 +0800 Subject: [PATCH] Change wording on token read --- samples/02_commands_framework/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/02_commands_framework/Program.cs b/samples/02_commands_framework/Program.cs index 11f39860f..ccbc8e165 100644 --- a/samples/02_commands_framework/Program.cs +++ b/samples/02_commands_framework/Program.cs @@ -38,7 +38,7 @@ namespace _02_commands_framework services.GetRequiredService().Log += LogAsync; // Tokens should be considered secret data and never hard-coded. - // We can read from the environment variable to prevent such practices. + // We can read from the environment variable to avoid hardcoding. await client.LoginAsync(TokenType.Bot, Environment.GetEnvironmentVariable("token")); await client.StartAsync();