From c3a270cae8af3b25810959b721105c56bba9a974 Mon Sep 17 00:00:00 2001 From: Abirdcfly Date: Wed, 17 Aug 2022 17:52:01 +0800 Subject: [PATCH] modfile: remove duplicate words from comments --- modfile/read.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modfile/read.go b/modfile/read.go index 70947ee..a503bc2 100644 --- a/modfile/read.go +++ b/modfile/read.go @@ -494,7 +494,7 @@ func (in *input) endToken(kind tokenKind) { in.token.endPos = in.pos } -// peek returns the kind of the the next token returned by lex. +// peek returns the kind of the next token returned by lex. func (in *input) peek() tokenKind { return in.token.kind }