1
0
mirror of https://github.com/golang/go synced 2024-11-26 16:07:00 -07:00

net/http: be clear that HTTPS is supported

Fixes #6443.

R=golang-dev, iant
CC=golang-dev
https://golang.org/cl/14231045
This commit is contained in:
Russ Cox 2013-10-02 13:21:15 -04:00
parent 5f853d7d94
commit 1b0bffa973

View 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/")
...