Browse Source

Contains -> Contains a piece of (describe article)

pull/1161/head
sarcasmloading 7 years ago
parent
commit
cb35aa2b67
26 changed files with 33 additions and 33 deletions
  1. +1
    -1
      src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/BanAuditLogData.cs
  2. +2
    -2
      src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/ChannelCreateAuditLogData.cs
  3. +1
    -1
      src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/ChannelDeleteAuditLogData.cs
  4. +1
    -1
      src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/ChannelUpdateAuditLogData.cs
  5. +1
    -1
      src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/EmoteCreateAuditLogData.cs
  6. +1
    -1
      src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/EmoteDeleteAuditLogData.cs
  7. +1
    -1
      src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/EmoteUpdateAuditLogData.cs
  8. +1
    -1
      src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/GuildUpdateAuditLogData.cs
  9. +2
    -2
      src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/InviteCreateAuditLogData.cs
  10. +2
    -2
      src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/InviteDeleteAuditLogData.cs
  11. +1
    -1
      src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/InviteUpdateAuditLogData.cs
  12. +1
    -1
      src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/KickAuditLogData.cs
  13. +1
    -1
      src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/MemberRoleAuditLogData.cs
  14. +1
    -1
      src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/MemberUpdateAuditLogData.cs
  15. +2
    -2
      src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/MessageDeleteAuditLogData.cs
  16. +1
    -1
      src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/OverwriteCreateAuditLogData.cs
  17. +1
    -1
      src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/OverwriteDeleteAuditLogData.cs
  18. +2
    -2
      src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/OverwriteUpdateAuditLogData.cs
  19. +3
    -3
      src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/PruneAuditLogData.cs
  20. +1
    -1
      src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/RoleCreateAuditLogData.cs
  21. +1
    -1
      src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/RoleDeleteAuditLogData.cs
  22. +1
    -1
      src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/RoleUpdateAuditLogData.cs
  23. +1
    -1
      src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/UnbanAuditLogData.cs
  24. +1
    -1
      src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/WebhookCreateAuditLogData.cs
  25. +1
    -1
      src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/WebhookDeleteAuditLogData.cs
  26. +1
    -1
      src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/WebhookUpdateAuditLogData.cs

+ 1
- 1
src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/BanAuditLogData.cs View File

@@ -6,7 +6,7 @@ using EntryModel = Discord.API.AuditLogEntry;
namespace Discord.Rest namespace Discord.Rest
{ {
/// <summary> /// <summary>
/// Contains audit log data related to a ban.
/// Contains a piece of audit log data related to a ban.
/// </summary> /// </summary>
public class BanAuditLogData : IAuditLogData public class BanAuditLogData : IAuditLogData
{ {


+ 2
- 2
src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/ChannelCreateAuditLogData.cs View File

@@ -7,7 +7,7 @@ using EntryModel = Discord.API.AuditLogEntry;
namespace Discord.Rest namespace Discord.Rest
{ {
/// <summary> /// <summary>
/// Contains audit log data related to a channel creation.
/// Contains a piece of audit log data related to a channel creation.
/// </summary> /// </summary>
public class ChannelCreateAuditLogData : IAuditLogData public class ChannelCreateAuditLogData : IAuditLogData
{ {
@@ -71,7 +71,7 @@ namespace Discord.Rest
/// Gets a collection of permission overwrites that was assigned to the created channel. /// Gets a collection of permission overwrites that was assigned to the created channel.
/// </summary> /// </summary>
/// <returns> /// <returns>
/// A collection of permission <see cref="Overwrite"/>, containing the permission overwrites that were
/// A collection of permission <see cref="Overwrite"/>, containing the permission overwrites that were
/// assigned to the created channel. /// assigned to the created channel.
/// </returns> /// </returns>
public IReadOnlyCollection<Overwrite> Overwrites { get; } public IReadOnlyCollection<Overwrite> Overwrites { get; }


+ 1
- 1
src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/ChannelDeleteAuditLogData.cs View File

@@ -7,7 +7,7 @@ using EntryModel = Discord.API.AuditLogEntry;
namespace Discord.Rest namespace Discord.Rest
{ {
/// <summary> /// <summary>
/// Contains audit log data related to a channel deletion.
/// Contains a piece of audit log data related to a channel deletion.
/// </summary> /// </summary>
public class ChannelDeleteAuditLogData : IAuditLogData public class ChannelDeleteAuditLogData : IAuditLogData
{ {


+ 1
- 1
src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/ChannelUpdateAuditLogData.cs View File

@@ -6,7 +6,7 @@ using EntryModel = Discord.API.AuditLogEntry;
namespace Discord.Rest namespace Discord.Rest
{ {
/// <summary> /// <summary>
/// Contains audit log data related to a channel update.
/// Contains a piece of audit log data related to a channel update.
/// </summary> /// </summary>
public class ChannelUpdateAuditLogData : IAuditLogData public class ChannelUpdateAuditLogData : IAuditLogData
{ {


+ 1
- 1
src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/EmoteCreateAuditLogData.cs View File

@@ -6,7 +6,7 @@ using EntryModel = Discord.API.AuditLogEntry;
namespace Discord.Rest namespace Discord.Rest
{ {
/// <summary> /// <summary>
/// Contains audit log data related to an emoji creation.
/// Contains a piece of audit log data related to an emoji creation.
/// </summary> /// </summary>
public class EmoteCreateAuditLogData : IAuditLogData public class EmoteCreateAuditLogData : IAuditLogData
{ {


+ 1
- 1
src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/EmoteDeleteAuditLogData.cs View File

@@ -6,7 +6,7 @@ using EntryModel = Discord.API.AuditLogEntry;
namespace Discord.Rest namespace Discord.Rest
{ {
/// <summary> /// <summary>
/// Contains audit log data related to an emoji deletion.
/// Contains a piece of audit log data related to an emoji deletion.
/// </summary> /// </summary>
public class EmoteDeleteAuditLogData : IAuditLogData public class EmoteDeleteAuditLogData : IAuditLogData
{ {


+ 1
- 1
src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/EmoteUpdateAuditLogData.cs View File

@@ -6,7 +6,7 @@ using EntryModel = Discord.API.AuditLogEntry;
namespace Discord.Rest namespace Discord.Rest
{ {
/// <summary> /// <summary>
/// Contains audit log data related to an emoji update.
/// Contains a piece of audit log data related to an emoji update.
/// </summary> /// </summary>
public class EmoteUpdateAuditLogData : IAuditLogData public class EmoteUpdateAuditLogData : IAuditLogData
{ {


+ 1
- 1
src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/GuildUpdateAuditLogData.cs View File

@@ -6,7 +6,7 @@ using EntryModel = Discord.API.AuditLogEntry;
namespace Discord.Rest namespace Discord.Rest
{ {
/// <summary> /// <summary>
/// Contains audit log data related to a guild update.
/// Contains a piece of audit log data related to a guild update.
/// </summary> /// </summary>
public class GuildUpdateAuditLogData : IAuditLogData public class GuildUpdateAuditLogData : IAuditLogData
{ {


+ 2
- 2
src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/InviteCreateAuditLogData.cs View File

@@ -6,7 +6,7 @@ using EntryModel = Discord.API.AuditLogEntry;
namespace Discord.Rest namespace Discord.Rest
{ {
/// <summary> /// <summary>
/// Contains audit log data related to an invite creation.
/// Contains a piece of audit log data related to an invite creation.
/// </summary> /// </summary>
public class InviteCreateAuditLogData : IAuditLogData public class InviteCreateAuditLogData : IAuditLogData
{ {
@@ -66,7 +66,7 @@ namespace Discord.Rest
/// when the user logs off). /// when the user logs off).
/// </summary> /// </summary>
/// <returns> /// <returns>
/// <c>true</c> if users accepting this invite will be removed from the guild when they log off; otherwise
/// <c>true</c> if users accepting this invite will be removed from the guild when they log off; otherwise
/// <c>false</c>. /// <c>false</c>.
/// </returns> /// </returns>
public bool Temporary { get; } public bool Temporary { get; }


+ 2
- 2
src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/InviteDeleteAuditLogData.cs View File

@@ -6,7 +6,7 @@ using EntryModel = Discord.API.AuditLogEntry;
namespace Discord.Rest namespace Discord.Rest
{ {
/// <summary> /// <summary>
/// Contains audit log data related to an invite removal.
/// Contains a piece of audit log data related to an invite removal.
/// </summary> /// </summary>
public class InviteDeleteAuditLogData : IAuditLogData public class InviteDeleteAuditLogData : IAuditLogData
{ {
@@ -66,7 +66,7 @@ namespace Discord.Rest
/// when the user logs off). /// when the user logs off).
/// </summary> /// </summary>
/// <returns> /// <returns>
/// <c>true</c> if users accepting this invite will be removed from the guild when they log off; otherwise
/// <c>true</c> if users accepting this invite will be removed from the guild when they log off; otherwise
/// <c>false</c>. /// <c>false</c>.
/// </returns> /// </returns>
public bool Temporary { get; } public bool Temporary { get; }


+ 1
- 1
src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/InviteUpdateAuditLogData.cs View File

@@ -6,7 +6,7 @@ using EntryModel = Discord.API.AuditLogEntry;
namespace Discord.Rest namespace Discord.Rest
{ {
/// <summary> /// <summary>
/// Contains audit log data relating to an invite update.
/// Contains a piece of audit log data relating to an invite update.
/// </summary> /// </summary>
public class InviteUpdateAuditLogData : IAuditLogData public class InviteUpdateAuditLogData : IAuditLogData
{ {


+ 1
- 1
src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/KickAuditLogData.cs View File

@@ -6,7 +6,7 @@ using EntryModel = Discord.API.AuditLogEntry;
namespace Discord.Rest namespace Discord.Rest
{ {
/// <summary> /// <summary>
/// Contains audit log data related to a kick.
/// Contains a piece of audit log data related to a kick.
/// </summary> /// </summary>
public class KickAuditLogData : IAuditLogData public class KickAuditLogData : IAuditLogData
{ {


+ 1
- 1
src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/MemberRoleAuditLogData.cs View File

@@ -7,7 +7,7 @@ using EntryModel = Discord.API.AuditLogEntry;
namespace Discord.Rest namespace Discord.Rest
{ {
/// <summary> /// <summary>
/// Contains audit log data related to a change in a guild member's roles.
/// Contains a piece of audit log data related to a change in a guild member's roles.
/// </summary> /// </summary>
public class MemberRoleAuditLogData : IAuditLogData public class MemberRoleAuditLogData : IAuditLogData
{ {


+ 1
- 1
src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/MemberUpdateAuditLogData.cs View File

@@ -6,7 +6,7 @@ using EntryModel = Discord.API.AuditLogEntry;
namespace Discord.Rest namespace Discord.Rest
{ {
/// <summary> /// <summary>
/// Contains audit log data related to a change in a guild member.
/// Contains a piece of audit log data related to a change in a guild member.
/// </summary> /// </summary>
public class MemberUpdateAuditLogData : IAuditLogData public class MemberUpdateAuditLogData : IAuditLogData
{ {


+ 2
- 2
src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/MessageDeleteAuditLogData.cs View File

@@ -4,7 +4,7 @@ using EntryModel = Discord.API.AuditLogEntry;
namespace Discord.Rest namespace Discord.Rest
{ {
/// <summary> /// <summary>
/// Contains audit log data related to message deletion(s).
/// Contains a piece of audit log data related to message deletion(s).
/// </summary> /// </summary>
public class MessageDeleteAuditLogData : IAuditLogData public class MessageDeleteAuditLogData : IAuditLogData
{ {
@@ -30,7 +30,7 @@ namespace Discord.Rest
/// Gets the ID of the channel that the messages were deleted from. /// Gets the ID of the channel that the messages were deleted from.
/// </summary> /// </summary>
/// <returns> /// <returns>
/// A <see cref="ulong"/> representing the snowflake identifer for the channel that the messages were
/// A <see cref="ulong"/> representing the snowflake identifer for the channel that the messages were
/// deleted from. /// deleted from.
/// </returns> /// </returns>
public ulong ChannelId { get; } public ulong ChannelId { get; }


+ 1
- 1
src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/OverwriteCreateAuditLogData.cs View File

@@ -6,7 +6,7 @@ using EntryModel = Discord.API.AuditLogEntry;
namespace Discord.Rest namespace Discord.Rest
{ {
/// <summary> /// <summary>
/// Contains audit log data for a permissions overwrite creation.
/// Contains a piece of audit log data for a permissions overwrite creation.
/// </summary> /// </summary>
public class OverwriteCreateAuditLogData : IAuditLogData public class OverwriteCreateAuditLogData : IAuditLogData
{ {


+ 1
- 1
src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/OverwriteDeleteAuditLogData.cs View File

@@ -6,7 +6,7 @@ using EntryModel = Discord.API.AuditLogEntry;
namespace Discord.Rest namespace Discord.Rest
{ {
/// <summary> /// <summary>
/// Contains audit log data related to the deletion of a permission overwrite.
/// Contains a piece of audit log data related to the deletion of a permission overwrite.
/// </summary> /// </summary>
public class OverwriteDeleteAuditLogData : IAuditLogData public class OverwriteDeleteAuditLogData : IAuditLogData
{ {


+ 2
- 2
src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/OverwriteUpdateAuditLogData.cs View File

@@ -6,7 +6,7 @@ using EntryModel = Discord.API.AuditLogEntry;
namespace Discord.Rest namespace Discord.Rest
{ {
/// <summary> /// <summary>
/// Contains audit log data related to the update of a permission overwrite.
/// Contains a piece of audit log data related to the update of a permission overwrite.
/// </summary> /// </summary>
public class OverwriteUpdateAuditLogData : IAuditLogData public class OverwriteUpdateAuditLogData : IAuditLogData
{ {
@@ -42,7 +42,7 @@ namespace Discord.Rest
/// Gets the overwrite permissions before the changes. /// Gets the overwrite permissions before the changes.
/// </summary> /// </summary>
/// <returns> /// <returns>
/// An overwrite permissions object representing the overwrite permissions that the overwrite had before
/// An overwrite permissions object representing the overwrite permissions that the overwrite had before
/// the changes were made. /// the changes were made.
/// </returns> /// </returns>
public OverwritePermissions OldPermissions { get; } public OverwritePermissions OldPermissions { get; }


+ 3
- 3
src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/PruneAuditLogData.cs View File

@@ -4,7 +4,7 @@ using EntryModel = Discord.API.AuditLogEntry;
namespace Discord.Rest namespace Discord.Rest
{ {
/// <summary> /// <summary>
/// Contains audit log data related to a guild prune.
/// Contains a piece of audit log data related to a guild prune.
/// </summary> /// </summary>
public class PruneAuditLogData : IAuditLogData public class PruneAuditLogData : IAuditLogData
{ {
@@ -23,8 +23,8 @@ namespace Discord.Rest
/// Gets the threshold for a guild member to not be kicked. /// Gets the threshold for a guild member to not be kicked.
/// </summary> /// </summary>
/// <returns> /// <returns>
/// An <see cref="int"/> representing the amount of days that a member must have been seen in the server,
/// to avoid being kicked. (i.e. If a user has not been seen for more than PruneDays, they will be
/// An <see cref="int"/> representing the amount of days that a member must have been seen in the server,
/// to avoid being kicked. (i.e. If a user has not been seen for more than PruneDays, they will be
/// kicked from the server) /// kicked from the server)
/// </returns> /// </returns>
public int PruneDays { get; } public int PruneDays { get; }


+ 1
- 1
src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/RoleCreateAuditLogData.cs View File

@@ -6,7 +6,7 @@ using EntryModel = Discord.API.AuditLogEntry;
namespace Discord.Rest namespace Discord.Rest
{ {
/// <summary> /// <summary>
/// Contains audit log data related to a role creation.
/// Contains a piece of audit log data related to a role creation.
/// </summary> /// </summary>
public class RoleCreateAuditLogData : IAuditLogData public class RoleCreateAuditLogData : IAuditLogData
{ {


+ 1
- 1
src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/RoleDeleteAuditLogData.cs View File

@@ -6,7 +6,7 @@ using EntryModel = Discord.API.AuditLogEntry;
namespace Discord.Rest namespace Discord.Rest
{ {
/// <summary> /// <summary>
/// Contains audit log data relating to a role deletion.
/// Contains a piece of audit log data relating to a role deletion.
/// </summary> /// </summary>
public class RoleDeleteAuditLogData : IAuditLogData public class RoleDeleteAuditLogData : IAuditLogData
{ {


+ 1
- 1
src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/RoleUpdateAuditLogData.cs View File

@@ -6,7 +6,7 @@ using EntryModel = Discord.API.AuditLogEntry;
namespace Discord.Rest namespace Discord.Rest
{ {
/// <summary> /// <summary>
/// Contains audit log data related to a role update.
/// Contains a piece of audit log data related to a role update.
/// </summary> /// </summary>
public class RoleUpdateAuditLogData : IAuditLogData public class RoleUpdateAuditLogData : IAuditLogData
{ {


+ 1
- 1
src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/UnbanAuditLogData.cs View File

@@ -6,7 +6,7 @@ using EntryModel = Discord.API.AuditLogEntry;
namespace Discord.Rest namespace Discord.Rest
{ {
/// <summary> /// <summary>
/// Contains audit log data related to an unban.
/// Contains a piece of audit log data related to an unban.
/// </summary> /// </summary>
public class UnbanAuditLogData : IAuditLogData public class UnbanAuditLogData : IAuditLogData
{ {


+ 1
- 1
src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/WebhookCreateAuditLogData.cs View File

@@ -6,7 +6,7 @@ using EntryModel = Discord.API.AuditLogEntry;
namespace Discord.Rest namespace Discord.Rest
{ {
/// <summary> /// <summary>
/// Contains audit log data related to a webhook creation.
/// Contains a piece of audit log data related to a webhook creation.
/// </summary> /// </summary>
public class WebhookCreateAuditLogData : IAuditLogData public class WebhookCreateAuditLogData : IAuditLogData
{ {


+ 1
- 1
src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/WebhookDeleteAuditLogData.cs View File

@@ -6,7 +6,7 @@ using EntryModel = Discord.API.AuditLogEntry;
namespace Discord.Rest namespace Discord.Rest
{ {
/// <summary> /// <summary>
/// Contains audit log data related to a webhook deletion.
/// Contains a piece of audit log data related to a webhook deletion.
/// </summary> /// </summary>
public class WebhookDeleteAuditLogData : IAuditLogData public class WebhookDeleteAuditLogData : IAuditLogData
{ {


+ 1
- 1
src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/WebhookUpdateAuditLogData.cs View File

@@ -6,7 +6,7 @@ using EntryModel = Discord.API.AuditLogEntry;
namespace Discord.Rest namespace Discord.Rest
{ {
/// <summary> /// <summary>
/// Contains audit log data related to a webhook update.
/// Contains a piece of audit log data related to a webhook update.
/// </summary> /// </summary>
public class WebhookUpdateAuditLogData : IAuditLogData public class WebhookUpdateAuditLogData : IAuditLogData
{ {


Loading…
Cancel
Save