From: Ian Kent Date: Sat, 23 Sep 2017 20:45:35 +0000 (+0100) Subject: net/http: fix copy-paste error in the ServeTLS docs X-Git-Tag: go1.10beta1~329 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=17f35c6993cdaf197db79cc6e62108f05f60bd0b;p=gostls13.git net/http: fix copy-paste error in the ServeTLS docs Change-Id: Id7f0d978ce5b0471a404d6e6673b789e7db04650 Reviewed-on: https://go-review.googlesource.com/65653 Reviewed-by: Brad Fitzpatrick --- diff --git a/src/net/http/server.go b/src/net/http/server.go index b59179fb3c..453024f4db 100644 --- a/src/net/http/server.go +++ b/src/net/http/server.go @@ -2349,7 +2349,7 @@ func Serve(l net.Listener, handler Handler) error { return srv.Serve(l) } -// Serve accepts incoming HTTPS connections on the listener l, +// ServeTLS accepts incoming HTTPS connections on the listener l, // creating a new service goroutine for each. The service goroutines // read requests and then call handler to reply to them. //