aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad Fitzpatrick <bradfitz@golang.org>2011-10-19 08:48:26 -0700
committerBrad Fitzpatrick <bradfitz@golang.org>2011-10-19 08:48:26 -0700
commit314afb417a9372290ffcf1b456f531e91b7667b9 (patch)
treeae0a623e9c82768ebf6b21e0cbf44b8416c5e560
parentcf0952d352d3f56b9c5a7b4637805051e3814057 (diff)
downloadgo-314afb417a9372290ffcf1b456f531e91b7667b9.tar.gz
go-314afb417a9372290ffcf1b456f531e91b7667b9.zip
http: comment tweaks
It hasn't been primitive in a while. R=golang-dev, adg CC=golang-dev https://golang.org/cl/5287041
-rw-r--r--src/pkg/http/client.go5
-rw-r--r--src/pkg/http/transport.go5
2 files changed, 9 insertions, 1 deletions
diff --git a/src/pkg/http/client.go b/src/pkg/http/client.go
index 3fa4a056ad..e939b96a31 100644
--- a/src/pkg/http/client.go
+++ b/src/pkg/http/client.go
@@ -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
diff --git a/src/pkg/http/transport.go b/src/pkg/http/transport.go
index 0914af7e5c..edc8448f00 100644
--- a/src/pkg/http/transport.go
+++ b/src/pkg/http/transport.go
@@ -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 (