From: Roland Illig Date: Wed, 4 Jan 2023 06:59:03 +0000 (+0000) Subject: cmd/gofmt: fix a typo in a comment X-Git-Tag: go1.20rc3~1^2~21 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=79cdecc8522e37d2eac5592c12459cd95ff92171;p=gostls13.git cmd/gofmt: fix a typo in a comment Change-Id: I34b2b9f9b70e39c872d5edbbda4de0fe330211f5 GitHub-Last-Rev: 723e36e11ee011c54d3ffc8125d0477c8eed25a0 GitHub-Pull-Request: golang/go#57566 Reviewed-on: https://go-review.googlesource.com/c/go/+/460457 TryBot-Result: Gopher Robot Auto-Submit: Ian Lance Taylor Reviewed-by: Robert Griesemer Run-TryBot: Ian Lance Taylor Reviewed-by: Ian Lance Taylor --- diff --git a/src/cmd/gofmt/rewrite.go b/src/cmd/gofmt/rewrite.go index a98c6a0cd9..0b7e211309 100644 --- a/src/cmd/gofmt/rewrite.go +++ b/src/cmd/gofmt/rewrite.go @@ -199,7 +199,7 @@ func match(m map[string]reflect.Value, pattern, val reflect.Value) bool { // object pointers and token positions always match return true case callExprType: - // For calls, the Ellipsis fields (token.Position) must + // For calls, the Ellipsis fields (token.Pos) must // match since that is how f(x) and f(x...) are different. // Check them here but fall through for the remaining fields. p := pattern.Interface().(*ast.CallExpr)