diff --git a/src/Discord.Net.Rest/Entities/Gateway/GatewayLimit.cs b/src/Discord.Net.Rest/Entities/Gateway/GatewayLimit.cs index 036133d3f..3b229dbb9 100644 --- a/src/Discord.Net.Rest/Entities/Gateway/GatewayLimit.cs +++ b/src/Discord.Net.Rest/Entities/Gateway/GatewayLimit.cs @@ -6,12 +6,18 @@ namespace Discord.Rest public struct GatewayLimit { /// - /// Gets or sets the maximum amount of this type of request in a time window, that is set by . + /// Gets or sets the maximum amount of this type of request in a time frame, that is set by . /// + /// + /// Returns the maximum amount of this type of request in a time frame to not trigger the rate limit. + /// public int Count { get; set; } /// - /// Gets or sets the amount of seconds until the rate limiter resets the remaining requests . + /// Gets or sets the amount of seconds until the rate limiter resets the remaining requests back to . /// + /// + /// Returns the amount of seconds that define the time frame to reset. + /// public int Seconds { get; set; } internal GatewayLimit(int count, int seconds)