diff --git a/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/InviteCreateAuditLogData.cs b/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/InviteCreateAuditLogData.cs
index 3a208ee5c..c210d72f0 100644
--- a/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/InviteCreateAuditLogData.cs
+++ b/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/InviteCreateAuditLogData.cs
@@ -88,7 +88,7 @@ namespace Discord.Rest
/// Gets the number of times this invite has been used.
///
///
- /// An representing the number of times this invite has been used.
+ /// An representing the number of times this invite was used.
///
public int Uses { get; }
///
diff --git a/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/MemberUpdateAuditLogData.cs b/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/MemberUpdateAuditLogData.cs
index 64a9733c4..394759a57 100644
--- a/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/MemberUpdateAuditLogData.cs
+++ b/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/MemberUpdateAuditLogData.cs
@@ -41,7 +41,7 @@ namespace Discord.Rest
/// Gets the new nickname of the user.
///
///
- /// A string containing the new nickname of the user; null if the user no longer has a nickname.
+ /// A string containing the new nickname of the user; null if the user no longer had a nickname.
///
public string NewNick { get; }
///
diff --git a/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/OverwriteUpdateAuditLogData.cs b/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/OverwriteUpdateAuditLogData.cs
index a93a7a171..15b7b8c0e 100644
--- a/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/OverwriteUpdateAuditLogData.cs
+++ b/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/OverwriteUpdateAuditLogData.cs
@@ -50,15 +50,15 @@ namespace Discord.Rest
/// Gets the overwrite permissions after the changes.
///
///
- /// An overwrite permissions object representing the overwrite permissions that the overwrite now has after
- /// the changes.
+ /// An overwrite permissions object representing the overwrite permissions that the overwrite had after the
+ /// changes.
///
public OverwritePermissions NewPermissions { get; }
///
- /// Gets the snowflake ID of the overwrite that has been updated.
+ /// Gets the ID of the overwrite that was updated.
///
///
- /// A representing the snowflake identifier of the overwrite that has been updated.
+ /// A representing the snowflake identifier of the overwrite that was updated.
///
public ulong OverwriteTargetId { get; }
///
diff --git a/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/PruneAuditLogData.cs b/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/PruneAuditLogData.cs
index 1a802fc93..c32d12b3f 100644
--- a/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/PruneAuditLogData.cs
+++ b/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/PruneAuditLogData.cs
@@ -24,7 +24,7 @@ namespace Discord.Rest
///
///
/// An 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
+ /// to avoid being kicked. (i.e. If a user has not been seen for more than , they will be
/// kicked from the server)
///
public int PruneDays { get; }
@@ -33,7 +33,7 @@ namespace Discord.Rest
///
///
/// An representing the number of members that were removed from this guild for having
- /// not been seen within PruneDays.
+ /// not been seen within .
///
public int MembersRemoved { get; }
}
diff --git a/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/RoleCreateAuditLogData.cs b/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/RoleCreateAuditLogData.cs
index a2f9c6d95..cb87af1ea 100644
--- a/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/RoleCreateAuditLogData.cs
+++ b/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/RoleCreateAuditLogData.cs
@@ -45,17 +45,17 @@ namespace Discord.Rest
}
///
- /// Gets the ID of the role that has been created.
+ /// Gets the ID of the role that was created.
///
///
- /// A representing the snowflake identifer to the role that has been created.
+ /// A representing the snowflake identifer to the role that was created.
///
public ulong RoleId { get; }
///
- /// Gets the role information that has been created.
+ /// Gets the role information that was created.
///
///
- /// An information object representing the properties of the role that has been created.
+ /// An information object representing the properties of the role that was created.
///
public RoleEditInfo Properties { get; }
}
diff --git a/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/RoleDeleteAuditLogData.cs b/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/RoleDeleteAuditLogData.cs
index 632d8e6bd..8fbbd12b9 100644
--- a/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/RoleDeleteAuditLogData.cs
+++ b/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/RoleDeleteAuditLogData.cs
@@ -45,17 +45,17 @@ namespace Discord.Rest
}
///
- /// Gets the ID of the role that has been deleted.
+ /// Gets the ID of the role that was deleted.
///
///
- /// A representing the snowflake identifer to the role that has been deleted.
+ /// A representing the snowflake identifer to the role that was deleted.
///
public ulong RoleId { get; }
///
- /// Gets the role information that has been deleted.
+ /// Gets the role information that was deleted.
///
///
- /// An information object representing the properties of the role that has been deleted.
+ /// An information object representing the properties of the role that was deleted.
///
public RoleEditInfo Properties { get; }
}
diff --git a/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/RoleUpdateAuditLogData.cs b/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/RoleUpdateAuditLogData.cs
index 91b4e8d66..a23a735b4 100644
--- a/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/RoleUpdateAuditLogData.cs
+++ b/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/RoleUpdateAuditLogData.cs
@@ -59,10 +59,10 @@ namespace Discord.Rest
}
///
- /// Gets the ID of the role that has been changed.
+ /// Gets the ID of the role that was changed.
///
///
- /// A representing the snowflake identifier of the role that has been changed.
+ /// A representing the snowflake identifier of the role that was changed.
///
public ulong RoleId { get; }
///
diff --git a/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/WebhookCreateAuditLogData.cs b/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/WebhookCreateAuditLogData.cs
index 2372a664b..05ba0f920 100644
--- a/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/WebhookCreateAuditLogData.cs
+++ b/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/WebhookCreateAuditLogData.cs
@@ -64,10 +64,11 @@ namespace Discord.Rest
///
public string Name { get; }
///
- /// Gets the ID of the channel that the webhook can send to.
+ /// Gets the ID of the channel that the webhook could send to.
///
///
- /// A representing the snowflake identifier of the channel that the webhook can send to.
+ /// A representing the snowflake identifier of the channel that the webhook could send
+ /// to.
///
public ulong ChannelId { get; }
}