From d7cdf2cc49fdd0dad0d0f10ac8519ccdf5157b5e Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Mon, 2 Mar 2026 21:27:59 +0300 Subject: [PATCH] chore: fix typo in `dailySalt` comment Signed-off-by: NotAShelf Change-Id: I8f0d0bf4bc597f0aecfd98c292f38cdb6a6a6964 --- internal/aggregate/uniques.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/aggregate/uniques.go b/internal/aggregate/uniques.go index 1c7b6de..8d8149f 100644 --- a/internal/aggregate/uniques.go +++ b/internal/aggregate/uniques.go @@ -53,7 +53,7 @@ func (u *UniquesEstimator) Estimate() uint64 { return u.hll.Estimate() } -// Cenerates a deterministic salt based on the current date +// Generates a deterministic salt based on the current date // Same day = same salt, different day = different salt func dailySalt(t time.Time) string { // Use UTC to ensure consistent rotation regardless of timezone