From 17f35c6993cdaf197db79cc6e62108f05f60bd0b Mon Sep 17 00:00:00 2001 From: Ian Kent Date: Sat, 23 Sep 2017 21:45:35 +0100 Subject: [PATCH] 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 --- src/net/http/server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. // -- 2.48.1