]> Cypherpunks.ru repositories - gostls13.git/blobdiff - src/runtime/debug/stack.go
runtime: add available godoc link
[gostls13.git] / src / runtime / debug / stack.go
index 5d810af5407c304ebf6015cc7bfe338d486a8963..3999840d3c8ef0d798a2429542369bd9c7462475 100644 (file)
@@ -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 {