From 084420b8374325aee2f25b3c9f9d55b7c35c69fd Mon Sep 17 00:00:00 2001 From: tyltr Date: Thu, 15 Feb 2024 20:40:22 +0800 Subject: [PATCH] chore:fix typo Signed-off-by: tyltr --- model/histogram/generic.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/model/histogram/generic.go b/model/histogram/generic.go index 7e1cc4b605..67abe7b0aa 100644 --- a/model/histogram/generic.go +++ b/model/histogram/generic.go @@ -422,7 +422,7 @@ func getBound(idx, schema int32) float64 { // bucket results in precisely that. It is either frac=1.0 & exp=1024 // (for schema < 0) or frac=0.5 & exp=1025 (for schema >=0). (This is, // by the way, a power of two where the exponent itself is a power of - // two, 2¹⁰ in fact, which coinicides with a bucket boundary in all + // two, 2¹⁰ in fact, which coincides with a bucket boundary in all // schemas.) So these are the special cases we have to catch below. if schema < 0 { exp := int(idx) << -schema