diff --git a/src/Discord.Net.WebSocket/Entities/Channels/SocketGroupChannel.cs b/src/Discord.Net.WebSocket/Entities/Channels/SocketGroupChannel.cs index 2fd748faa..129d7efae 100644 --- a/src/Discord.Net.WebSocket/Entities/Channels/SocketGroupChannel.cs +++ b/src/Discord.Net.WebSocket/Entities/Channels/SocketGroupChannel.cs @@ -34,12 +34,12 @@ namespace Discord.WebSocket public IReadOnlyCollection CachedMessages => _messages?.Messages ?? ImmutableArray.Create(); /// - /// Returns a collection representing all of the users in the group. + /// Returns a collection representing all of the users in the group. /// public new IReadOnlyCollection Users => _users.ToReadOnlyCollection(); /// - /// Returns a collection representing all users in the group, not including the client. + /// Returns a collection representing all users in the group, not including the client. /// public IReadOnlyCollection Recipients => _users.Select(x => x.Value).Where(x => x.Id != Discord.CurrentUser.Id).ToReadOnlyCollection(() => _users.Count - 1);