From 84837bb97b7181c84004ce6772a4547d051f42d4 Mon Sep 17 00:00:00 2001 From: RogueException Date: Tue, 19 Jan 2016 00:27:17 -0400 Subject: [PATCH] Minor doc edit --- src/Discord.Net/DiscordClient.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Discord.Net/DiscordClient.cs b/src/Discord.Net/DiscordClient.cs index ba442d058..34b8ab326 100644 --- a/src/Discord.Net/DiscordClient.cs +++ b/src/Discord.Net/DiscordClient.cs @@ -1040,13 +1040,13 @@ namespace Discord #endregion #region Async Wrapper - /// Blocking call that will execute the provided async method and wait until client has been manually stopped. This is mainly intended for use in console applications. + /// Blocking call that will execute the provided async method and wait until the client has been manually stopped. This is mainly intended for use in console applications. public void ExecuteAndWait(Func asyncAction) { asyncAction().GetAwaiter().GetResult(); _disconnectedEvent.WaitOne(); } - /// Blocking call and wait until client has been manually stopped. This is mainly intended for use in console applications. + /// Blocking call and wait until the client has been manually stopped. This is mainly intended for use in console applications. public void Wait() { _disconnectedEvent.WaitOne();