From 1b0bffa9737b906ebf9da3f5062c881431aa6397 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Wed, 2 Oct 2013 13:21:15 -0400 Subject: [PATCH] net/http: be clear that HTTPS is supported Fixes #6443. R=golang-dev, iant CC=golang-dev https://golang.org/cl/14231045 --- src/pkg/net/http/doc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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/") ... -- 2.50.0