From: Brad Fitzpatrick Date: Thu, 9 Feb 2012 23:29:57 +0000 (+1100) Subject: net/http/fcgi: don't mention threads in docs X-Git-Tag: weekly.2012-02-14~169 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=0a398c4057afeb13cd0c2bf61571dcf9c7ec2b1b;p=gostls13.git net/http/fcgi: don't mention threads in docs Fixes #2942 R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5650049 --- diff --git a/src/pkg/net/http/fcgi/child.go b/src/pkg/net/http/fcgi/child.go index c94b9a7b24..c8b9a33c87 100644 --- a/src/pkg/net/http/fcgi/child.go +++ b/src/pkg/net/http/fcgi/child.go @@ -243,9 +243,9 @@ func (c *child) serveRequest(req *request, body io.ReadCloser) { } // Serve accepts incoming FastCGI connections on the listener l, creating a new -// service thread for each. The service threads read requests and then call handler +// goroutine for each. The goroutine reads requests and then calls handler // to reply to them. -// If l is nil, Serve accepts connections on stdin. +// If l is nil, Serve accepts connections from os.Stdin. // If handler is nil, http.DefaultServeMux is used. func Serve(l net.Listener, handler http.Handler) error { if l == nil {