]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/preprofile: correct -V flag
authorzhangjian <zj.cosmos@gmail.com>
Wed, 27 Nov 2024 16:35:49 +0000 (16:35 +0000)
committerGopher Robot <gobot@golang.org>
Wed, 27 Nov 2024 21:27:58 +0000 (21:27 +0000)
Change-Id: I9a0dc3a4b4c81f0f6942badcd4643a74c5046440
GitHub-Last-Rev: d1fa4e51569b1b1b70e4617ac41740cc21d4325a
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>
src/cmd/preprofile/main.go

index 68e8dc716eb8f7fe04e1004352b33ab81ed32708..b229f85163e3e2fec49252c11b1839b15d24b96f 100644 (file)
@@ -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)
 }