From 9439b2150d661b0549a55cbe60b7e27044895ba1 Mon Sep 17 00:00:00 2001 From: Guangwen Feng Date: Tue, 25 Aug 2020 16:17:41 +0800 Subject: [PATCH] Fix golint warning caused by misspell (#7842) Signed-off-by: Guangwen Feng --- tsdb/index/index.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsdb/index/index.go b/tsdb/index/index.go index 20f94610cd..d7559b346a 100644 --- a/tsdb/index/index.go +++ b/tsdb/index/index.go @@ -1623,7 +1623,7 @@ func (r *Reader) LabelNames() ([]string, error) { return labelNames, nil } -// NewStringListIterator returns a StringIter for the given sorted list of strings. +// NewStringListIter returns a StringIter for the given sorted list of strings. func NewStringListIter(s []string) StringIter { return &stringListIter{l: s} }