mirror of https://github.com/golang/go.git
cmd/preprofile: correct -V flag
Change-Id: I9a0dc3a4b4c81f0f6942badcd4643a74c5046440
GitHub-Last-Rev: d1fa4e5156
GitHub-Pull-Request: golang/go#66949
Reviewed-on: https://go-review.googlesource.com/c/go/+/580615
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Auto-Submit: Ian Lance Taylor <iant@golang.org>
Reviewed-by: qiu laidongfeng2 <2645477756@qq.com>
Reviewed-by: Cherry Mui <cherryyz@google.com>
Reviewed-by: Veronica Silina <veronicasilina@google.com>
This commit is contained in:
parent
bcb934ad11
commit
b6fed7199f
|
|
@ -8,7 +8,7 @@
|
|||
//
|
||||
// Usage:
|
||||
//
|
||||
// go tool preprofile [-v] [-o output] -i input
|
||||
// go tool preprofile [-V] [-o output] -i input
|
||||
package main
|
||||
|
||||
import (
|
||||
|
|
@ -23,7 +23,7 @@ import (
|
|||
)
|
||||
|
||||
func usage() {
|
||||
fmt.Fprintf(os.Stderr, "usage: go tool preprofile [-v] [-o output] -i input\n\n")
|
||||
fmt.Fprintf(os.Stderr, "usage: go tool preprofile [-V] [-o output] -i input\n\n")
|
||||
flag.PrintDefaults()
|
||||
os.Exit(2)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue