From 9688f516e046faf3a4edcbab5767b08fe5d3e751 Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Tue, 12 Nov 2024 16:52:18 +0900 Subject: [PATCH] chore: update jobresult_test.go (#4124) recieve -> receive Signed-off-by: Ikko Eltociear Ashimine --- pkg/concurrency/jobresult_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/concurrency/jobresult_test.go b/pkg/concurrency/jobresult_test.go index a7bd1ff6..976f4c4a 100644 --- a/pkg/concurrency/jobresult_test.go +++ b/pkg/concurrency/jobresult_test.go @@ -11,7 +11,7 @@ import ( ) var _ = Describe("pkg/concurrency unit tests", func() { - It("can be used to recieve a result across goroutines", func() { + It("can be used to receive a result across goroutines", func() { jr, wjr := NewJobResult[string, string]("foo") Expect(jr).ToNot(BeNil()) Expect(wjr).ToNot(BeNil()) @@ -30,7 +30,7 @@ var _ = Describe("pkg/concurrency unit tests", func() { }) - It("can be used to recieve an error across goroutines", func() { + It("can be used to receive an error across goroutines", func() { jr, wjr := NewJobResult[string, string]("foo") Expect(jr).ToNot(BeNil()) Expect(wjr).ToNot(BeNil())