From 7fea9de6c27b95f91591db4b5bd9023eb80dc522 Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Tue, 30 Aug 2022 00:43:42 +0900 Subject: [PATCH] internal/trace: fix typo in goroutines.go assosciated -> associated --- src/internal/trace/goroutines.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/internal/trace/goroutines.go b/src/internal/trace/goroutines.go index 5da90e0b6d8..796bc8b03c8 100644 --- a/src/internal/trace/goroutines.go +++ b/src/internal/trace/goroutines.go @@ -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 {