1
0
mirror of https://github.com/golang/go synced 2024-11-22 14:54:46 -07:00

internal/trace: fix typo in goroutines.go

assosciated -> associated
This commit is contained in:
Ikko Ashimine 2022-08-30 00:43:42 +09:00 committed by GitHub
parent 63e129ba1c
commit 7fea9de6c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -172,7 +172,7 @@ func GoroutineStats(events []*Event) map[uint64]*GDesc {
// of the active region. For ease handling of this
// case, we create a fake region description with the
// task id. This isn't strictly necessary as this
// goroutine may not be assosciated with the task, but
// goroutine may not be associated with the task, but
// it can be convenient to see all children created
// during a region.
if creatorG := gs[ev.G]; creatorG != nil && len(creatorG.gdesc.activeRegions) > 0 {