From d26e1f3a496435e0b04c89fcfbc8ceeabda67b0a Mon Sep 17 00:00:00 2001 From: Chris Johnston Date: Thu, 28 Feb 2019 14:33:51 -0800 Subject: [PATCH] Minor grammar fix in DiscordSocketClient --- src/Discord.Net.WebSocket/DiscordSocketClient.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Discord.Net.WebSocket/DiscordSocketClient.cs b/src/Discord.Net.WebSocket/DiscordSocketClient.cs index 196aedf47..96286d318 100644 --- a/src/Discord.Net.WebSocket/DiscordSocketClient.cs +++ b/src/Discord.Net.WebSocket/DiscordSocketClient.cs @@ -83,7 +83,7 @@ namespace Discord.WebSocket /// /// /// - /// An collection of DM channels that have been opened in this session. + /// A collection of DM channels that have been opened in this session. /// public IReadOnlyCollection DMChannels => State.PrivateChannels.OfType().ToImmutableArray(); @@ -98,7 +98,7 @@ namespace Discord.WebSocket /// /// /// - /// An collection of group channels that have been opened in this session. + /// A collection of group channels that have been opened in this session. /// public IReadOnlyCollection GroupChannels => State.PrivateChannels.OfType().ToImmutableArray();