From 767ff40d1f82185e08d517802927319a3d1598cf Mon Sep 17 00:00:00 2001 From: Paulo Date: Fri, 22 May 2020 01:18:53 -0300 Subject: [PATCH] Update xml docs --- src/Discord.Net.Rest/Entities/Gateway/GatewayLimit.cs | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) 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)