]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/go: add missing parenthesis in a call to "PrintVersion"
authorHossein Zolfi <hossein.zolfi@gmail.com>
Mon, 13 Sep 2021 19:16:28 +0000 (19:16 +0000)
committerJay Conrod <jayconrod@google.com>
Mon, 13 Sep 2021 21:19:51 +0000 (21:19 +0000)
For #45713

Change-Id: I16e548e6c10e58da815d08897f4ba5d71eeb17e4
GitHub-Last-Rev: 4a0c5d0cdaba94e5950effdcb0ef6b736c9556d1
GitHub-Pull-Request: golang/go#48360
Reviewed-on: https://go-review.googlesource.com/c/go/+/349599
Reviewed-by: Bryan C. Mills <bcmills@google.com>
Trust: Bryan C. Mills <bcmills@google.com>
Trust: Jay Conrod <jayconrod@google.com>
Run-TryBot: Bryan C. Mills <bcmills@google.com>
TryBot-Result: Go Bot <gobot@golang.org>

src/cmd/go/testdata/script/work_prune.txt

index 7347b312ee6c957478ebbd4b5f195020e878de49..f0fb073c4b3de7dcf2ddf8e2b25cf4976fe3cb7c 100644 (file)
@@ -59,7 +59,7 @@ package b
 import "example.com/q"
 
 func TestB() {
-       q.PrintVersion
+       q.PrintVersion()
 }
 -- p/go.mod --
 module example.com/p