diff options
Diffstat (limited to 'src/runtime/debug.go')
| -rw-r--r-- | src/runtime/debug.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/debug.go b/src/runtime/debug.go index 9a92b45ff3..1cd9189ed5 100644 --- a/src/runtime/debug.go +++ b/src/runtime/debug.go @@ -11,7 +11,7 @@ import ( // GOMAXPROCS sets the maximum number of CPUs that can be executing // simultaneously and returns the previous setting. It defaults to -// the value of runtime.NumCPU. If n < 1, it does not change the current setting. +// the value of [runtime.NumCPU]. If n < 1, it does not change the current setting. // This call will go away when the scheduler improves. func GOMAXPROCS(n int) int { if GOARCH == "wasm" && n > 1 { |
