summaryrefslogtreecommitdiff
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
commitf8ef4e736748a5818f8dbac42bf6d46a0a2415be (patch)
tree9d99f7aff6b83bfc2eb88df7227900db608522fb
parent44afd5e3128653ad51202f671f62eb77b528d31c (diff)
downloadgo-f8ef4e736748a5818f8dbac42bf6d46a0a2415be.tar.gz
http: comment tweaks
It hasn't been primitive in a while. R=golang-dev, adg CC=golang-dev http://codereview.appspot.com/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 3fa4a056a..e939b96a3 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 0914af7e5..edc8448f0 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 (