From 996848ef40650b6d95a41cb33f1ecbedb7ce088e Mon Sep 17 00:00:00 2001 From: Hu Shuai Date: Sat, 8 May 2021 11:45:29 +0800 Subject: [PATCH] Fix golint issue Signed-off-by: Hu Shuai --- storage/interface.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/interface.go b/storage/interface.go index 6f65cf069..5583dcf02 100644 --- a/storage/interface.go +++ b/storage/interface.go @@ -124,7 +124,7 @@ type ExemplarQueryable interface { ExemplarQuerier(ctx context.Context) (ExemplarQuerier, error) } -// Querier provides reading access to time series data. +// ExemplarQuerier provides reading access to time series data. type ExemplarQuerier interface { // Select all the exemplars that match the matchers. // Within a single slice of matchers, it is an intersection. Between the slices, it is a union.