File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 33// license that can be found in the LICENSE file.
44
55// Package errgroup provides synchronization, error propagation, and Context
6- // cancelation for groups of goroutines working on subtasks of a common task.
6+ // cancellation for groups of goroutines working on subtasks of a common task.
77//
88// [errgroup.Group] is related to [sync.WaitGroup] but adds handling of tasks
99// returning errors.
Original file line number Diff line number Diff line change @@ -222,7 +222,7 @@ func TestTryGo(t *testing.T) {
222222 g .SetLimit (0 )
223223 for i := 0 ; i < 1 << 10 ; i ++ {
224224 if g .TryGo (fn ) {
225- t .Fatalf ("TryGo should fail but got succeded ." )
225+ t .Fatalf ("TryGo should fail but got succeeded ." )
226226 }
227227 }
228228 g .Wait ()
You can’t perform that action at this time.
0 commit comments