1
0
mirror of https://github.com/golang/go synced 2024-11-21 11:34:44 -07:00

cmd/preprofile: remove deleted -v flag

This commit is contained in:
zhangjian 2024-04-21 19:17:42 +08:00
parent 6cb107452a
commit 1b126269db

View File

@ -8,7 +8,7 @@
//
// Usage:
//
// go tool preprofile [-v] [-o output] -i input
// go tool preprofile [-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 [-o output] -i input\n\n")
flag.PrintDefaults()
os.Exit(2)
}