Skip to content
Prev Previous commit
Fix typo
  • Loading branch information
jeschkies authored Dec 18, 2024
commit 4d00e72c6a848949d9eec61a8098eaf8d6a71146
2 changes: 1 addition & 1 deletion pkg/logql/count_min_sketch.go
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ func (v *HeapCountMinSketchVector) Add(metric labels.Labels, value float64) {
heap.Push(v, metric)
v.observed[id] = struct{}{}
} else if labels.Equal(v.Metrics[0], metric) {
// The smalles element has been updated to fix the heap.
// The smallest element has been updated to fix the heap.
heap.Fix(v, 0)
}

Expand Down
Loading