diff options
| author | cui fliter <imcusg@gmail.com> | 2023-11-07 17:35:46 +0800 |
|---|---|---|
| committer | Gopher Robot <gobot@golang.org> | 2023-11-08 16:59:11 +0000 |
| commit | 6a1bbca2b3129b18f7d7e63b51536da2e9afe9e2 (patch) | |
| tree | e7a99852f607ed39fa16619d28633f5a089a9526 /src/runtime/debug | |
| parent | fa903593fb7c40a5745817b68d9a71ab6b934009 (diff) | |
| download | go-6a1bbca2b3129b18f7d7e63b51536da2e9afe9e2.tar.xz | |
runtime: add available godoc link
Change-Id: Ifb4844efddcb0369b0302eeab72394eeaf5c8072
Reviewed-on: https://go-review.googlesource.com/c/go/+/540022
Reviewed-by: Michael Knyszek <mknyszek@google.com>
Auto-Submit: Michael Knyszek <mknyszek@google.com>
Reviewed-by: Heschi Kreinick <heschi@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Run-TryBot: shuang cui <imcusg@gmail.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Diffstat (limited to 'src/runtime/debug')
| -rw-r--r-- | src/runtime/debug/garbage.go | 2 | ||||
| -rw-r--r-- | src/runtime/debug/stack.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/runtime/debug/garbage.go b/src/runtime/debug/garbage.go index 0f53928fe8..cb3248d64d 100644 --- a/src/runtime/debug/garbage.go +++ b/src/runtime/debug/garbage.go @@ -214,7 +214,7 @@ func SetTraceback(level string) // // The memory limit is always respected by the Go runtime, so to // effectively disable this behavior, set the limit very high. -// math.MaxInt64 is the canonical value for disabling the limit, +// [math.MaxInt64] is the canonical value for disabling the limit, // but values much greater than the available memory on the underlying // system work just as well. // diff --git a/src/runtime/debug/stack.go b/src/runtime/debug/stack.go index 5d810af540..3999840d3c 100644 --- a/src/runtime/debug/stack.go +++ b/src/runtime/debug/stack.go @@ -17,7 +17,7 @@ func PrintStack() { } // Stack returns a formatted stack trace of the goroutine that calls it. -// It calls runtime.Stack with a large enough buffer to capture the entire trace. +// It calls [runtime.Stack] with a large enough buffer to capture the entire trace. func Stack() []byte { buf := make([]byte, 1024) for { |
