From: Shenghou Ma Date: Mon, 17 Dec 2012 15:32:08 +0000 (+0800) Subject: net/http/pprof: fix doc for /debug/pprof/ X-Git-Tag: go1.1rc2~1610 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=a89aaad195a186c5946edb9eb953c1d87f1c7d59;p=gostls13.git net/http/pprof: fix doc for /debug/pprof/ Fixes #4548. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/6944053 --- diff --git a/src/pkg/net/http/pprof/pprof.go b/src/pkg/net/http/pprof/pprof.go index d70bf4ed9d..0c03e5b2b7 100644 --- a/src/pkg/net/http/pprof/pprof.go +++ b/src/pkg/net/http/pprof/pprof.go @@ -34,9 +34,8 @@ // // go tool pprof http://localhost:6060/debug/pprof/block // -// Or to view all available profiles: -// -// go tool pprof http://localhost:6060/debug/pprof/ +// To view all available profiles, open http://localhost:6060/debug/pprof/ +// in your browser. // // For a study of the facility in action, visit //