From: Michael Matloob Date: Tue, 15 Mar 2016 21:45:10 +0000 (-0400) Subject: runtime: update link to WriteHeapDump format X-Git-Tag: go1.7beta1~1312 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=7e3344f74eea51433918e29abb925e9f6e037888;p=gostls13.git runtime: update link to WriteHeapDump format The new link is https://golang.org/s/go15heapdump. Change-Id: Ifcaf8572bfe815ffaa78442a1991f6e20e990a50 Reviewed-on: https://go-review.googlesource.com/20740 Reviewed-by: Brad Fitzpatrick --- diff --git a/src/runtime/debug/garbage.go b/src/runtime/debug/garbage.go index 2fb85a652c..4d3ca79a81 100644 --- a/src/runtime/debug/garbage.go +++ b/src/runtime/debug/garbage.go @@ -155,7 +155,7 @@ func SetPanicOnFault(enabled bool) bool { // WriteHeapDump writes a description of the heap and the objects in // it to the given file descriptor. -// The heap dump format is defined at https://golang.org/s/go13heapdump. +// The heap dump format is defined at https://golang.org/s/go15heapdump. func WriteHeapDump(fd uintptr) // SetTraceback sets the amount of detail printed by the runtime in diff --git a/src/runtime/heapdump.go b/src/runtime/heapdump.go index ae63b2182c..e6a41f7f97 100644 --- a/src/runtime/heapdump.go +++ b/src/runtime/heapdump.go @@ -7,7 +7,7 @@ // finalizers, etc.) to a file. // The format of the dumped file is described at -// https://golang.org/s/go14heapdump. +// https://golang.org/s/go15heapdump. package runtime