]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/gofmt: fix a typo in a comment
authorRoland Illig <roland.illig@gmx.de>
Wed, 4 Jan 2023 06:59:03 +0000 (06:59 +0000)
committerGopher Robot <gobot@golang.org>
Wed, 4 Jan 2023 18:15:30 +0000 (18:15 +0000)
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 <gobot@golang.org>
Auto-Submit: Ian Lance Taylor <iant@google.com>
Reviewed-by: Robert Griesemer <gri@google.com>
Run-TryBot: Ian Lance Taylor <iant@google.com>
Reviewed-by: Ian Lance Taylor <iant@google.com>
src/cmd/gofmt/rewrite.go

index a98c6a0cd9b4837d3cfbc23ba68255dfe4c989e2..0b7e21130905c0ca7197892d579f9b348ad2da11 100644 (file)
@@ -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)