Skip to content

Commit

Permalink
doc/effective_go.html: fixed the Request channel parameter
Browse files Browse the repository at this point in the history
R=golang-dev, r
CC=golang-dev, gri
https://golang.org/cl/6010051
  • Loading branch information
atomaths authored and robpike committed Apr 13, 2012
1 parent e4389c1 commit 08f919f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/effective_go.html
Original file line number Diff line number Diff line change
Expand Up @@ -2479,7 +2479,7 @@ <h3 id="channels">Channels</h3>
}
}

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)
Expand Down

0 comments on commit 08f919f

Please sign in to comment.