Skip to content

Commit a7357d2

Browse files
committed
Fix spelling
1 parent e681fa3 commit a7357d2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

group.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ func (grp *Group) Add(outTag, errTag string, rFunc RunFunc) {
169169
grp.runners.PushBack(rnr)
170170
}
171171

172-
// Run starts each previously added [RunFunc] in a separate go routine and transitions the
172+
// Run starts each previously added [RunFunc] in a separate goroutine and transitions the
173173
// Group to being ready for a [Group.Wait] call.
174174
//
175175
// When a RunFunc pipeline percolates to the front of all “active” RunFuncs, it is set to

queue_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ func TestQueueBlock(t *testing.T) {
103103
eb := &testBufWriter{}
104104
outQ, errQ := newQueue(false, 100, ob, eb)
105105

106-
outChan := make(chan string, 100) // Allowe plenty of buffer space so parent goroutine
106+
outChan := make(chan string, 100) // Allow plenty of buffer space so parent goroutine
107107
errChan := make(chan string, 100) // won't stall if tqbClient does
108108

109109
outClient := &tqbClient{line: outChan, wtr: outQ}

0 commit comments

Comments
 (0)