fix worker pools link

This commit is contained in:
Mark McGranaghan 2013-10-07 06:00:26 -07:00
parent 77d43eebe7
commit 46fbbfda0f

View File

@ -1,6 +1,6 @@
// The primary mechanism for managing state in Go is
// communication over channels. We saw this for example
// with [worker pools](worker-pool). There are a few other
// with [worker pools](worker-pools). There are a few other
// options for managing state though. Here we'll
// look at using the `sync/atomic` package for _atomic
// counters_ accessed by multiple goroutines.