]> Cypherpunks.ru repositories - gostls13.git/blobdiff - src/runtime/debug.go
runtime: add available godoc link
[gostls13.git] / src / runtime / debug.go
index 9a92b45ff328dadefa3b34481b6de7d68e988d7d..1cd9189ed5eb4e17af39c9862ce4e0668d6c4118 100644 (file)
@@ -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 {