From: Jes Cok Date: Sat, 8 Jun 2024 01:47:51 +0000 (+0800) Subject: time: correct spelling, queing -> queuing X-Git-Tag: go1.23rc1~43 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=35d721b0cb3da3f464af26fb8503a521cf9901ff;p=gostls13.git time: correct spelling, queing -> queuing Change-Id: I418953a766db22b134a9569161f06cf8682c1eef Reviewed-on: https://go-review.googlesource.com/c/go/+/591336 Auto-Submit: Ian Lance Taylor Reviewed-by: Michael Pratt LUCI-TryBot-Result: Go LUCI Reviewed-by: Ian Lance Taylor --- diff --git a/src/time/tick_test.go b/src/time/tick_test.go index 750aa90f4d..fce9002cfc 100644 --- a/src/time/tick_test.go +++ b/src/time/tick_test.go @@ -179,7 +179,7 @@ func TestLongAdjustTimers(t *testing.T) { done := make(chan bool) AfterFunc(60*Second, func() { close(done) }) - // Set up a queing goroutine to ping pong through the scheduler. + // Set up a queuing goroutine to ping pong through the scheduler. inQ := make(chan func()) outQ := make(chan func())