aboutsummaryrefslogtreecommitdiff
path: root/src/runtime
diff options
context:
space:
mode:
authorcuishuang <imcusg@gmail.com>2025-12-04 11:39:53 +0800
committerGopher Robot <gobot@golang.org>2025-12-05 07:30:36 -0800
commita70addd3b31ccb685f48867e24c6c2b4dc364a11 (patch)
treea93210950419121eeb342832e06acbb3a54a0b7e /src/runtime
parent93b49f773d1a4b706f5352dffb912c259c15dc4f (diff)
downloadgo-a70addd3b31ccb685f48867e24c6c2b4dc364a11.tar.xz
all: fix some comment issues
Change-Id: I5dec35b1432705b3a52859c38e758220282226af Reviewed-on: https://go-review.googlesource.com/c/go/+/726700 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Sean Liao <sean@liao.dev> Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Cherry Mui <cherryyz@google.com> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Diffstat (limited to 'src/runtime')
-rw-r--r--src/runtime/mgc.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/mgc.go b/src/runtime/mgc.go
index 32cd8cb0e8..a3bed4b3eb 100644
--- a/src/runtime/mgc.go
+++ b/src/runtime/mgc.go
@@ -5,7 +5,7 @@
// Garbage collector (GC).
//
// The GC runs concurrently with mutator threads, is type accurate (aka precise), allows multiple
-// GC thread to run in parallel. It is a concurrent mark and sweep that uses a write barrier. It is
+// GC threads to run in parallel. It is a concurrent mark and sweep that uses a write barrier. It is
// non-generational and non-compacting. Allocation is done using size segregated per P allocation
// areas to minimize fragmentation while eliminating locks in the common case.
//