]> Cypherpunks repositories - gostls13.git/commitdiff
net/http: be clear that HTTPS is supported
authorRuss Cox <rsc@golang.org>
Wed, 2 Oct 2013 17:21:15 +0000 (13:21 -0400)
committerRuss Cox <rsc@golang.org>
Wed, 2 Oct 2013 17:21:15 +0000 (13:21 -0400)
Fixes #6443.

R=golang-dev, iant
CC=golang-dev
https://golang.org/cl/14231045

src/pkg/net/http/doc.go

index b6ae8b87a2f0de952d44198eedc3c4a370c2d040..b1216e8dafa5b701a59cd4f167085d1bfcd8553e 100644 (file)
@@ -5,7 +5,7 @@
 /*
 Package http provides HTTP client and server implementations.
 
-Get, Head, Post, and PostForm make HTTP requests:
+Get, Head, Post, and PostForm make HTTP (or HTTPS) requests:
 
        resp, err := http.Get("http://example.com/")
        ...