From 35d721b0cb3da3f464af26fb8503a521cf9901ff Mon Sep 17 00:00:00 2001 From: Jes Cok Date: Sat, 8 Jun 2024 09:47:51 +0800 Subject: [PATCH] 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 --- src/time/tick_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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())