We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d12bb5d commit 8a22b1bCopy full SHA for 8a22b1b
factory.go
@@ -2,7 +2,7 @@ package roadrunner
2
3
import "os/exec"
4
5
-// Pool is responsible of wrapping given command into tasks worker.
+// Factory is responsible of wrapping given command into tasks worker.
6
type Factory interface {
7
// SpawnWorker creates new worker process based on given command.
8
// Process must not be started.
static_pool.go
@@ -30,7 +30,7 @@ type StaticPool struct {
30
// active task executions
31
tasks sync.WaitGroup
32
33
- // workers circular allocation errBuffer
+ // workers circular allocation buffer
34
free chan *Worker
35
36
// protects state of worker list, does not affect allocation
0 commit comments