Browse Source

Minor grammar fix in DiscordSocketClient

pull/1276/head
Chris Johnston 6 years ago
parent
commit
d26e1f3a49
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/Discord.Net.WebSocket/DiscordSocketClient.cs

+ 2
- 2
src/Discord.Net.WebSocket/DiscordSocketClient.cs View File

@@ -83,7 +83,7 @@ namespace Discord.WebSocket
/// </note>
/// </remarks>
/// <returns>
/// An collection of DM channels that have been opened in this session.
/// A collection of DM channels that have been opened in this session.
/// </returns>
public IReadOnlyCollection<SocketDMChannel> DMChannels
=> State.PrivateChannels.OfType<SocketDMChannel>().ToImmutableArray();
@@ -98,7 +98,7 @@ namespace Discord.WebSocket
/// </note>
/// </remarks>
/// <returns>
/// An collection of group channels that have been opened in this session.
/// A collection of group channels that have been opened in this session.
/// </returns>
public IReadOnlyCollection<SocketGroupChannel> GroupChannels
=> State.PrivateChannels.OfType<SocketGroupChannel>().ToImmutableArray();


Loading…
Cancel
Save