doc/go_mem.html: correct the channel example

While we're here, also fix two HTML issues.

Fixes #9235.

Change-Id: I6e2f50931c0f387881271484a726ac2308518cf4
Reviewed-on: https://go-review.googlesource.com/7602
Reviewed-by: Rob Pike <r@golang.org>
This commit is contained in:
Shenghou Ma 2015-03-15 18:21:08 -04:00 committed by Minux Ma
parent e2ca3e6c0f
commit 10a98dd6d9

View file

@ -322,11 +322,11 @@ var limit = make(chan int, 3)
func main() {
for _, w := range work {
go func() {
limit <- 1
go func(w func()) {
limit &lt;- 1
w()
<-limit
}()
&lt;-limit
}(w)
}
select{}
}