From 2b56adf3d1ea5fb5ad1f0644e15937fa412785bf Mon Sep 17 00:00:00 2001 From: Austin Clements Date: Mon, 9 Feb 2026 19:17:12 -0500 Subject: [PATCH] [release-branch.go1.26] runtime/pprof: fix missing Profile docs CL 688335 accidentally introduced a blank line between the Profile doc comment and the type definition, causing the entire doc to get dropped. Change-Id: I97b1c0e57d142d7caea6e543a0138ed6dcd1c3fe Reviewed-on: https://go-review.googlesource.com/c/go/+/743680 Auto-Submit: Austin Clements LUCI-TryBot-Result: Go LUCI Reviewed-by: Junyang Shao --- src/runtime/pprof/pprof.go | 1 - 1 file changed, 1 deletion(-) diff --git a/src/runtime/pprof/pprof.go b/src/runtime/pprof/pprof.go index c27df22897..d560eeade1 100644 --- a/src/runtime/pprof/pprof.go +++ b/src/runtime/pprof/pprof.go @@ -171,7 +171,6 @@ import ( // holds a lock for 1s while 5 other goroutines are waiting for the entire // second to acquire the lock, its unlock call stack will report 5s of // contention. - type Profile struct { name string mu sync.Mutex -- 2.52.0