From: Jongmin Kim Date: Fri, 13 Apr 2012 05:22:40 +0000 (+1000) Subject: doc/effective_go.html: fixed the Request channel parameter X-Git-Tag: go1.1rc2~3385 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=08f919f462f09fa38c62552a7f829829dd8c985c;p=gostls13.git doc/effective_go.html: fixed the Request channel parameter R=golang-dev, r CC=golang-dev, gri https://golang.org/cl/6010051 --- 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 < MaxOutstanding; i++ { go handle(clientRequests)