From f73d80809b99fba1066515c2848ce316d6976db8 Mon Sep 17 00:00:00 2001 From: Tardis Xu Date: Fri, 31 Aug 2018 07:16:37 +0000 Subject: [PATCH] runtime: detail the method comment Change the comment to make more conformable to the function implementation. Change-Id: I8461e2f09824c50e16223a27d0f61070f04bd21b GitHub-Last-Rev: c25a8493d3938b38e2c318f7a7b94c9f2eb11bb4 GitHub-Pull-Request: golang/go#27404 Reviewed-on: https://go-review.googlesource.com/c/go/+/132477 Reviewed-by: Emmanuel Odeke --- 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 c06697ef6d..be48c8c55f 100644 --- a/src/runtime/proc.go +++ b/src/runtime/proc.go @@ -2203,7 +2203,7 @@ func execute(gp *g, inheritTime bool) { } // Finds a runnable goroutine to execute. -// Tries to steal from other P's, get g from global queue, poll network. +// Tries to steal from other P's, get g from local or global queue, poll network. func findrunnable() (gp *g, inheritTime bool) { _g_ := getg()