From 683f51d3071abe8dbe13ef877595825b469f30e3 Mon Sep 17 00:00:00 2001 From: Jes Cok Date: Thu, 29 Jun 2023 14:17:00 +0000 Subject: cmd/asm/internal/lex: fix comment, remove the first "has" Change-Id: I429f0fa6c99ef576fe83c7bd0d1c1e176ecbb179 GitHub-Last-Rev: fb581b7f271f026182de0737c4fe5c360d5dea96 GitHub-Pull-Request: golang/go#61066 Reviewed-on: https://go-review.googlesource.com/c/go/+/507097 TryBot-Result: Gopher Robot Reviewed-by: Dmitri Shuralyov Auto-Submit: Dmitri Shuralyov Reviewed-by: Cherry Mui Run-TryBot: Cherry Mui --- src/cmd/asm/internal/lex/slice.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cmd/asm/internal/lex/slice.go b/src/cmd/asm/internal/lex/slice.go index 8ee0c7035f..61b15dd963 100644 --- a/src/cmd/asm/internal/lex/slice.go +++ b/src/cmd/asm/internal/lex/slice.go @@ -65,7 +65,7 @@ func (s *Slice) Col() int { // #define A #define B(x) x // and // #define A #define B (x) x - // The first has definition of B has an argument, the second doesn't. Because we let + // The first definition of B has an argument, the second doesn't. Because we let // text/scanner strip the blanks for us, this is extremely rare, hard to fix, and not worth it. return s.pos } -- cgit v1.2.3-54-g00ecf