From 835c27a76be67e6488eae3bb7b62638c6668e356 Mon Sep 17 00:00:00 2001 From: Guangwen Feng Date: Thu, 9 Jan 2020 19:27:26 +0800 Subject: [PATCH] Fix typo in comment for func Lex (#6588) Signed-off-by: Guangwen Feng --- promql/lex.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/promql/lex.go b/promql/lex.go index 96ef608a80..787b054b5a 100644 --- a/promql/lex.go +++ b/promql/lex.go @@ -332,7 +332,7 @@ func (l *Lexer) NextItem(itemp *Item) { l.lastPos = l.itemp.Pos } -// lex creates a new scanner for the input string. +// Lex creates a new scanner for the input string. func Lex(input string) *Lexer { l := &Lexer{ input: input,