From 7b7a854c041fc15ca11bf760617f11dc31aaa519 Mon Sep 17 00:00:00 2001
From: Zhou Peng
Date: Mon, 7 May 2018 07:34:53 +0000
Subject: [PATCH] runtime: fix a typo mistake in comments
Change-Id: I33790af9fd0c2f6fdeaf9778c1381e0e6d697abb
Reviewed-on: https://go-review.googlesource.com/111755
Reviewed-by: Brad Fitzpatrick
---
src/runtime/proc.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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
}
--
2.50.0