From d72cad23f6f7de461de9d174341671b52d045782 Mon Sep 17 00:00:00 2001 From: khanhkhanhlele Date: Tue, 18 Nov 2025 14:47:47 +0700 Subject: [PATCH] Fix typos in some files --- plugin/cron/chain_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/cron/chain_test.go b/plugin/cron/chain_test.go index 55d99adb6..04ae6ccfd 100644 --- a/plugin/cron/chain_test.go +++ b/plugin/cron/chain_test.go @@ -187,7 +187,7 @@ func TestChainSkipIfStillRunning(t *testing.T) { }() // After 5ms, the first job is still in progress, and the second job was - // aleady skipped. + // already skipped. time.Sleep(5 * time.Millisecond) started, done := j.Started(), j.Done() if started != 1 || done != 0 {