1
0
mirror of https://github.com/golang/go synced 2024-11-22 08:34:40 -07:00

doc/effective_go.html: fix syntax error in code example

Fixes #5333.

R=golang-dev, adg
CC=golang-dev
https://golang.org/cl/8698046
This commit is contained in:
Shenghou Ma 2013-04-24 03:51:31 +08:00
parent 3828316b9f
commit ed19ab47c3

View File

@ -2947,7 +2947,7 @@ func Serve(queue chan *Request) {
go func() {
process(req)
sem <- 1
}
}()
}
}</pre>