1
0
mirror of https://github.com/golang/go synced 2024-11-11 22:50:22 -07:00

cmd/pprof: point to -h in package documentation

Change-Id: I820c72e31fbb6471481f4483e7f13bb8b3d5d00c
Reviewed-on: https://go-review.googlesource.com/c/go/+/396881
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Trust: Eli Bendersky‎ <eliben@golang.org>
Run-TryBot: Eli Bendersky‎ <eliben@golang.org>
TryBot-Result: Gopher Robot <gobot@golang.org>
This commit is contained in:
Eli Bendersky 2022-03-30 20:19:52 -07:00 committed by Eli Bendersky‎
parent 62d4c32b7e
commit 2e8dc8f472

View File

@ -4,9 +4,13 @@
// Pprof interprets and displays profiles of Go programs.
//
// Usage:
// Basic usage:
//
// go tool pprof binary profile
//
// For more information, see https://blog.golang.org/profiling-go-programs.
// For detailed usage information:
//
// go tool pprof -h
//
// For an example, see https://blog.golang.org/profiling-go-programs.
package main