diff options
| author | Alexander F. Rødseth <52813+xyproto@users.noreply.github.com> | 2025-10-30 13:46:44 +0000 |
|---|---|---|
| committer | Gopher Robot <gobot@golang.org> | 2025-10-30 09:00:07 -0700 |
| commit | d44db293f9efabac3abf718a02e7787fb961b63f (patch) | |
| tree | 363cb47ba349cc8184e4fd1cac1f32e0c9406f54 | |
| parent | cdc6b559ca2ccac8eda7e0ed2c4745df2a32a697 (diff) | |
| download | go-d44db293f9efabac3abf718a02e7787fb961b63f.tar.xz | |
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 <thepudds1460@gmail.com>
Reviewed-by: Robert Griesemer <gri@google.com>
Auto-Submit: t hepudds <thepudds1460@gmail.com>
Reviewed-by: Alan Donovan <adonovan@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Auto-Submit: Alan Donovan <adonovan@google.com>
| -rw-r--r-- | src/go/token/position.go | 2 |
1 files changed, 1 insertions, 1 deletions
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. |
