Commit 08f919f4 authored by Jongmin Kim's avatar Jongmin Kim Committed by Rob Pike

doc/effective_go.html: fixed the Request channel parameter

R=golang-dev, r
CC=golang-dev, gri
https://golang.org/cl/6010051
parent e4389c1d
......@@ -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)
......
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