From: Dan Kortschak Date: Wed, 17 Aug 2022 12:27:59 +0000 (+0930) Subject: runtime: delete repeated word X-Git-Tag: go1.20rc1~1571 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=83b223ec3a4ddbcac0ba38692661ea0b76a79d2c;p=gostls13.git runtime: delete repeated word Change-Id: I0d7005481fc61b4c7f3286674c022334c8c0cae0 Reviewed-on: https://go-review.googlesource.com/c/go/+/424494 Reviewed-by: hopehook TryBot-Result: Gopher Robot Reviewed-by: Ian Lance Taylor Run-TryBot: hopehook Reviewed-by: Michael Knyszek Auto-Submit: Michael Knyszek --- diff --git a/src/runtime/mgcpacer.go b/src/runtime/mgcpacer.go index f73a3a8277..633d181a9d 100644 --- a/src/runtime/mgcpacer.go +++ b/src/runtime/mgcpacer.go @@ -684,7 +684,7 @@ func (c *gcControllerState) endCycle(now int64, procs int, userForced bool) { // // assistDuration * procs * (utilization + idleUtilization) // - // In this case, we *include* idle utilization, because that is additional CPU time that the + // In this case, we *include* idle utilization, because that is additional CPU time that // the GC had available to it. // // In effect, idle GC time is sort of double-counted here, but it's very weird compared