From fd42bcea8af64e1ffa6a7d5dcc10a2e293f5cafa Mon Sep 17 00:00:00 2001 From: David Fifield Date: Tue, 19 Aug 2025 14:50:23 +0000 Subject: [PATCH] Comment typo. --- broker/metrics.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/broker/metrics.go b/broker/metrics.go index 748f42c..cef62b3 100644 --- a/broker/metrics.go +++ b/broker/metrics.go @@ -192,7 +192,7 @@ func (r records) Less(i, j int) bool { // formatAndClearCountryStats has the side effect of deleting all entries in m. func formatAndClearCountryStats(m *sync.Map, binned bool) string { // Extract entries from the map into a slice of records, binning counts - // if asked to.. + // if asked to. rs := records{} m.Range(func(cc, countPtr any) bool { count := *countPtr.(*uint64)