Browse Source

Fixing xml docs

pull/1491/head
SubZero0 5 years ago
parent
commit
4dd7f6a1af
2 changed files with 4 additions and 4 deletions
  1. +1
    -1
      src/Discord.Net.Core/Entities/Invites/TargetUserType.cs
  2. +3
    -3
      src/Discord.Net.WebSocket/BaseSocketClient.Events.cs

+ 1
- 1
src/Discord.Net.Core/Entities/Invites/TargetUserType.cs View File

@@ -2,7 +2,7 @@ namespace Discord
{ {
public enum TargetUserType public enum TargetUserType
{ {
/// <summary> The invite target user type is not defined. </summary>
/// <summary> The invite whose target user type is not defined. </summary>
Undefined = 0, Undefined = 0,
/// <summary> The invite is for a Go Live stream. </summary> /// <summary> The invite is for a Go Live stream. </summary>
Stream = 1 Stream = 1


+ 3
- 3
src/Discord.Net.WebSocket/BaseSocketClient.Events.cs View File

@@ -373,7 +373,7 @@ namespace Discord.WebSocket
/// <remarks> /// <remarks>
/// <para> /// <para>
/// This event is fired when an invite is created. The event handler must return a /// This event is fired when an invite is created. The event handler must return a
/// <see cref="Task"/> and accept a <see cref="SocketInvite"/> as its parameters.
/// <see cref="Task"/> and accept a <see cref="SocketInvite"/> as its parameter.
/// </para> /// </para>
/// <para> /// <para>
/// The invite created will be passed into the <see cref="SocketInvite"/> parameter. /// The invite created will be passed into the <see cref="SocketInvite"/> parameter.
@@ -390,10 +390,10 @@ namespace Discord.WebSocket
/// <para> /// <para>
/// This event is fired when an invite is deleted. The event handler must return /// This event is fired when an invite is deleted. The event handler must return
/// a <see cref="Task"/> and accept a <see cref="SocketGuildChannel"/> and /// a <see cref="Task"/> and accept a <see cref="SocketGuildChannel"/> and
/// <see cref="string"> as its parameters.
/// <see cref="string"/> as its parameter.
/// </para> /// </para>
/// <para> /// <para>
/// The channel where this invite was will be passed into the <see cref="SocketGuildChannel"/> parameter.
/// The channel where this invite was created will be passed into the <see cref="SocketGuildChannel"/> parameter.
/// </para> /// </para>
/// <para> /// <para>
/// The code of the deleted invite will be passed into the <see cref="string"/> parameter. /// The code of the deleted invite will be passed into the <see cref="string"/> parameter.


Loading…
Cancel
Save