From 0a398c4057afeb13cd0c2bf61571dcf9c7ec2b1b Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Fri, 10 Feb 2012 10:29:57 +1100 Subject: [PATCH] net/http/fcgi: don't mention threads in docs Fixes #2942 R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5650049 --- src/pkg/net/http/fcgi/child.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 { -- 2.50.0