From 47d990c318e221613eca9970c82c323a6c3c2b18 Mon Sep 17 00:00:00 2001 From: Neuheit <38368299+Neuheit@users.noreply.github.com> Date: Sat, 25 Jan 2020 21:59:12 -0500 Subject: [PATCH] Fixed documentation. --- src/Discord.Net.WebSocket/BaseSocketClient.Events.cs | 2 +- .../Entities/Invites/SocketInvite.cs | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) 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; }