1
0
mirror of https://github.com/golang/go synced 2024-11-20 11:34:48 -07:00

http: comment tweaks

It hasn't been primitive in a while.

R=golang-dev, adg
CC=golang-dev
https://golang.org/cl/5287041
This commit is contained in:
Brad Fitzpatrick 2011-10-19 08:48:26 -07:00
parent cf0952d352
commit 314afb417a
2 changed files with 9 additions and 1 deletions

View File

@ -2,7 +2,10 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Primitive HTTP client. See RFC 2616.
// HTTP client. See RFC 2616.
//
// This is the high-level Client interface.
// The low-level implementation is in transport.go.
package http

View File

@ -2,6 +2,11 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// HTTP client implementation. See RFC 2616.
//
// This is the low-level Transport implementation of RoundTripper.
// The high-level interface is in client.go.
package http
import (