1
0
mirror of https://github.com/golang/go synced 2024-11-21 23:24:41 -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: // Usage:
// //
// go tool preprofile [-v] [-o output] -i input // go tool preprofile [-o output] -i input
package main package main
import ( import (
@ -23,7 +23,7 @@ import (
) )
func usage() { 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() flag.PrintDefaults()
os.Exit(2) os.Exit(2)
} }