From: emahiro Date: Thu, 21 Oct 2021 15:34:33 +0000 (+0900) Subject: runtime: fix typo of pushBackAll X-Git-Tag: go1.18beta1~811 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=02a36668aa13c3182d29da678764c8f4f5a9499b;p=gostls13.git runtime: fix typo of pushBackAll Fixes: #49081 Change-Id: Ie6742f1e7a60c2d92ce1283bcfaa3eac521440a1 Reviewed-on: https://go-review.googlesource.com/c/go/+/357629 Reviewed-by: Daniel Martí Trust: Daniel Martí Trust: Cherry Mui --- diff --git a/src/runtime/proc.go b/src/runtime/proc.go index b80f09f993..990637e21a 100644 --- a/src/runtime/proc.go +++ b/src/runtime/proc.go @@ -6123,7 +6123,7 @@ func (q *gQueue) pushBack(gp *g) { q.tail.set(gp) } -// pushBackAll adds all Gs in l2 to the tail of q. After this q2 must +// pushBackAll adds all Gs in q2 to the tail of q. After this q2 must // not be used. func (q *gQueue) pushBackAll(q2 gQueue) { if q2.tail == 0 {