From: Zhou Peng Date: Mon, 7 May 2018 07:34:53 +0000 (+0000) Subject: runtime: fix a typo mistake in comments X-Git-Tag: go1.11beta1~515 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=7b7a854c041fc15ca11bf760617f11dc31aaa519;p=gostls13.git runtime: fix a typo mistake in comments Change-Id: I33790af9fd0c2f6fdeaf9778c1381e0e6d697abb Reviewed-on: https://go-review.googlesource.com/111755 Reviewed-by: Brad Fitzpatrick --- diff --git a/src/runtime/proc.go b/src/runtime/proc.go index 9b55feeff2..1ef7c357a5 100644 --- a/src/runtime/proc.go +++ b/src/runtime/proc.go @@ -4972,7 +4972,7 @@ func sync_runtime_canSpin(i int) bool { // Spin only few times and only if running on a multicore machine and // GOMAXPROCS>1 and there is at least one other running P and local runq is empty. // As opposed to runtime mutex we don't do passive spinning here, - // because there can be work on global runq on on other Ps. + // because there can be work on global runq or on other Ps. if i >= active_spin || ncpu <= 1 || gomaxprocs <= int32(sched.npidle+sched.nmspinning)+1 { return false }