Commit 10a98dd6 authored by Shenghou Ma's avatar Shenghou Ma Committed by Minux Ma

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/7602Reviewed-by: 's avatarRob Pike <r@golang.org>
parent e2ca3e6c
...@@ -322,11 +322,11 @@ var limit = make(chan int, 3) ...@@ -322,11 +322,11 @@ var limit = make(chan int, 3)
func main() { func main() {
for _, w := range work { for _, w := range work {
go func() { go func(w func()) {
limit <- 1 limit &lt;- 1
w() w()
<-limit &lt;-limit
}() }(w)
} }
select{} select{}
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment