aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJongmin Kim <atomaths@gmail.com>2012-04-13 15:22:40 +1000
committerRob Pike <r@golang.org>2012-04-13 15:22:40 +1000
commite4806c2a18c385bebc4ad08faf8e7aae89586d19 (patch)
tree6b053f5e99660f3a19bedfc322bca916552f40ed
parentcd73d696d041d492a6a31bc02a895740c022c9bc (diff)
downloadgo-e4806c2a18c385bebc4ad08faf8e7aae89586d19.tar.gz
go-e4806c2a18c385bebc4ad08faf8e7aae89586d19.zip
[release-branch.go1] doc/effective_go.html: fixed the Request channel parameter
««« backport 29acc3fb59c3 doc/effective_go.html: fixed the Request channel parameter R=golang-dev, r CC=golang-dev, gri https://golang.org/cl/6010051 »»»
-rw-r--r--doc/effective_go.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/effective_go.html b/doc/effective_go.html
index 4382729c3c..6cacac6303 100644
--- a/doc/effective_go.html
+++ b/doc/effective_go.html
@@ -2479,7 +2479,7 @@ func handle(queue chan *Request) {
}
}
-func Serve(clientRequests chan *clientRequests, quit chan bool) {
+func Serve(clientRequests chan *Request, quit chan bool) {
// Start handlers
for i := 0; i &lt; MaxOutstanding; i++ {
go handle(clientRequests)