diff --git a/src/Discord.Net.WebSocket/BaseSocketClient.Events.cs b/src/Discord.Net.WebSocket/BaseSocketClient.Events.cs index 43c16f945..64d5d1eb6 100644 --- a/src/Discord.Net.WebSocket/BaseSocketClient.Events.cs +++ b/src/Discord.Net.WebSocket/BaseSocketClient.Events.cs @@ -302,7 +302,7 @@ namespace Discord.WebSocket internal readonly AsyncEvent> _guildUpdatedEvent = new AsyncEvent>(); //Invites - /// Fired when an invite is created. Fired when an invite is created. public event Func InviteCreated { add { _inviteCreatedEvent.Add(value); } remove { _inviteCreatedEvent.Remove(value); } diff --git a/src/Discord.Net.WebSocket/Entities/Invites/SocketInvite.cs b/src/Discord.Net.WebSocket/Entities/Invites/SocketInvite.cs index 7da19077b..1dfac5b1e 100644 --- a/src/Discord.Net.WebSocket/Entities/Invites/SocketInvite.cs +++ b/src/Discord.Net.WebSocket/Entities/Invites/SocketInvite.cs @@ -13,22 +13,22 @@ namespace Discord.WebSocket public class SocketInvite : SocketEntity { /// - /// Gets the channel in which this invite was created. + /// Gets the channel where this invite was created. /// public ISocketMessageChannel Channel { get; private set; } /// - /// Gets the channel ID in which this invite was created. + /// Gets the channel ID where this invite was created. /// public ulong ChannelId { get; private set; } /// - /// Gets the guild in which this invite was created. + /// Gets the guild where this invite was created. /// public IGuild Guild { get; private set; } /// - /// Gets the guild ID in which this invite was created. + /// Gets the guild ID where this invite was created. /// public ulong GuildId { get; private set; }