summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIkko Ashimine <eltociear@gmail.com>2022-08-29 15:48:47 +0000
committerGopher Robot <gobot@golang.org>2022-08-29 19:23:57 +0000
commit68b10c2bb8ab95397c70b32ce7c3373eaa6ae9ce (patch)
treed611c70cfc9385dc058d86adedca33d9d84277ed
parent0e16d67a560f22ac1fcbc1fa12d25add8bf649d6 (diff)
downloadgo-git-68b10c2bb8ab95397c70b32ce7c3373eaa6ae9ce.tar.gz
internal/trace: fix typo in goroutines.go
assosciated -> associated Change-Id: Id1cbbdea12f0239a9e173ece934c18cc9ffcf0f4 GitHub-Last-Rev: 7fea9de6c27b95f91591db4b5bd9023eb80dc522 GitHub-Pull-Request: golang/go#54739 Reviewed-on: https://go-review.googlesource.com/c/go/+/425596 Reviewed-by: Michael Pratt <mpratt@google.com> Reviewed-by: Michael Knyszek <mknyszek@google.com> Auto-Submit: Michael Knyszek <mknyszek@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Run-TryBot: Michael Knyszek <mknyszek@google.com>
-rw-r--r--src/internal/trace/goroutines.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/internal/trace/goroutines.go b/src/internal/trace/goroutines.go
index 5da90e0b6d..796bc8b03c 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 {