From 8928094b5679a805919623203cb33de2a4ee7b8b Mon Sep 17 00:00:00 2001 From: ethan Date: Tue, 6 Aug 2019 13:11:16 +0800 Subject: [PATCH] func name ref correct "qauntile" -> "quantile" (#5834) Signed-off-by: ethan --- promql/quantile.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/promql/quantile.go b/promql/quantile.go index 7a010a567..6fef2c4f6 100644 --- a/promql/quantile.go +++ b/promql/quantile.go @@ -173,7 +173,7 @@ func ensureMonotonic(buckets buckets) { } } -// qauntile calculates the given quantile of a vector of samples. +// quantile calculates the given quantile of a vector of samples. // // The Vector will be sorted. // If 'values' has zero elements, NaN is returned.