From: Russ Cox Date: Wed, 2 Oct 2013 17:21:15 +0000 (-0400) Subject: net/http: be clear that HTTPS is supported X-Git-Tag: go1.2rc2~90 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=1b0bffa9737b906ebf9da3f5062c881431aa6397;p=gostls13.git net/http: be clear that HTTPS is supported Fixes #6443. R=golang-dev, iant CC=golang-dev https://golang.org/cl/14231045 --- diff --git a/src/pkg/net/http/doc.go b/src/pkg/net/http/doc.go index b6ae8b87a2..b1216e8daf 100644 --- a/src/pkg/net/http/doc.go +++ b/src/pkg/net/http/doc.go @@ -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/") ...