From d44db293f9efabac3abf718a02e7787fb961b63f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Alexander=20F=2E=20R=C3=B8dseth?= <52813+xyproto@users.noreply.github.com> Date: Thu, 30 Oct 2025 13:46:44 +0000 Subject: [PATCH] go/token: fix a typo in a comment Fixes #75632 Change-Id: I71f891eb837147b6ff818ec4b2133c8c07091931 GitHub-Last-Rev: 3eeeea2dc28ef13eaef0fee7abf00ad418218f83 GitHub-Pull-Request: golang/go#76117 Reviewed-on: https://go-review.googlesource.com/c/go/+/716440 Reviewed-by: t hepudds Reviewed-by: Robert Griesemer Auto-Submit: t hepudds Reviewed-by: Alan Donovan LUCI-TryBot-Result: Go LUCI Auto-Submit: Alan Donovan --- src/go/token/position.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/go/token/position.go b/src/go/token/position.go index c3816b1672..39756f257d 100644 --- a/src/go/token/position.go +++ b/src/go/token/position.go @@ -511,7 +511,7 @@ func (s *FileSet) AddExistingFiles(files ...*File) { // } // // because all calls to AddFile must be in increasing order. - // AddExistingFilesFiles lets us augment an existing FileSet + // AddExistingFiles lets us augment an existing FileSet // sequentially, so long as all sets of files have disjoint ranges. // This approach also does not preserve line directives. -- 2.52.0