File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -35,4 +35,4 @@ all the examples `Run` functions sequentially in line with the table of contents
35
35
* [ 21 - Struct Embedding] ( structembedding/main.go )
36
36
* [ 34 - Timers] ( timers/main.go )
37
37
* [ 35 - Tickers] ( tickers/main.go )
38
- * [ 36 - WorkerGroups ] ( workergroups /main.go)
38
+ * [ 36 - Worker Pools ] ( workerpools /main.go)
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ import (
26
26
"github.com/symonk/learning-golang/timers"
27
27
"github.com/symonk/learning-golang/values"
28
28
"github.com/symonk/learning-golang/variables"
29
- "github.com/symonk/learning-golang/workergroups "
29
+ "github.com/symonk/learning-golang/workerpools "
30
30
)
31
31
32
32
func main () {
@@ -68,7 +68,7 @@ func buildMap() map[string]func() {
68
68
fnMap ["ranges" ] = ranges .Run
69
69
fnMap ["timers" ] = timers .Run
70
70
fnMap ["tickers" ] = tickers .Run
71
- fnMap ["workergroups " ] = workergroups .Run
71
+ fnMap ["workerpools " ] = workerpools .Run
72
72
fnMap ["functions" ] = functions .Run
73
73
fnMap ["closures" ] = closures .Run
74
74
fnMap ["recursion" ] = recursion .Run
Original file line number Diff line number Diff line change 1
- package workergroups
1
+ package workerpools
2
2
3
3
import (
4
4
"fmt"
You can’t perform that action at this time.
0 commit comments