From c04cf0cb2b8c201ce3b8d7c2123e320eeed074c3 Mon Sep 17 00:00:00 2001 From: Pablo Radnic Date: Tue, 20 Apr 2021 09:44:07 -0300 Subject: [PATCH] Added '.' at the end of manager.go documentation --- src/stats/manager.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/stats/manager.go b/src/stats/manager.go index 47b91186d..2043a146a 100644 --- a/src/stats/manager.go +++ b/src/stats/manager.go @@ -3,21 +3,21 @@ package stats import stats "github.com/lyft/gostats" import gostats "github.com/lyft/gostats" -// Manager is the interface that wraps initialization of stat structures +// Manager is the interface that wraps initialization of stat structures. type Manager interface { // NewStats provides a RateLimitStats structure associated with a given descriptorKey. // Multiple calls with the same descriptorKey argument are guaranteed to be equivalent. NewStats(descriptorKey string) RateLimitStats // Initializes a ShouldRateLimitStats structure. - // Multiple calls to this method are idempotent + // Multiple calls to this method are idempotent. NewShouldRateLimitStats() ShouldRateLimitStats // Initializes a ServiceStats structure. - // Multiple calls to this method are idempotent + // Multiple calls to this method are idempotent. NewServiceStats() ServiceStats // Initializes a ShouldRateLimitLegacyStats structure. - // Multiple calls to this method are idempotent + // Multiple calls to this method are idempotent. NewShouldRateLimitLegacyStats() ShouldRateLimitLegacyStats - // Returns the stats.Store wrapped by the Manager + // Returns the stats.Store wrapped by the Manager. GetStatsStore() stats.Store }