cmd/asm/internal/lex: fix comment, remove the first "has"

This commit is contained in:
Jes Cok 2023-06-29 22:00:15 +08:00
parent 03cd8a7b0e
commit fb581b7f27
1 changed files with 1 additions and 1 deletions

View File

@ -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
}