]> Cypherpunks repositories - gostls13.git/commitdiff
runtime: fix eagerly typo
authorMichael Pratt <mpratt@google.com>
Wed, 8 May 2024 18:51:39 +0000 (14:51 -0400)
committerGopher Robot <gobot@golang.org>
Wed, 8 May 2024 19:11:58 +0000 (19:11 +0000)
Change-Id: I3150e2d0b9f5590c6da95392b0b51df94b8c20eb
Reviewed-on: https://go-review.googlesource.com/c/go/+/584338
Reviewed-by: Michael Knyszek <mknyszek@google.com>
Auto-Submit: Michael Pratt <mpratt@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>

src/runtime/proc.go

index 618669ce827d603068539d9711cb88eb543774e5..ebc07bb1abf327c8365d60813ce68925cfa50351 100644 (file)
@@ -924,7 +924,7 @@ func mcommoninit(mp *m, id int64) {
        mProfStackInit(mp)
 }
 
-// mProfStackInit is used to eagilery initialize stack trace buffers for
+// mProfStackInit is used to eagerly initialize stack trace buffers for
 // profiling. Lazy allocation would have to deal with reentrancy issues in
 // malloc and runtime locks for mLockProfile.
 // TODO(mknyszek): Implement lazy allocation if this becomes a problem.