]> Cypherpunks repositories - gostls13.git/commitdiff
http: comment tweaks
authorBrad Fitzpatrick <bradfitz@golang.org>
Wed, 19 Oct 2011 15:48:26 +0000 (08:48 -0700)
committerBrad Fitzpatrick <bradfitz@golang.org>
Wed, 19 Oct 2011 15:48:26 +0000 (08:48 -0700)
It hasn't been primitive in a while.

R=golang-dev, adg
CC=golang-dev
https://golang.org/cl/5287041

src/pkg/http/client.go
src/pkg/http/transport.go

index 3fa4a056ad85ced2c628a46bab1e0a67ef8040f8..e939b96a311a5b69eb2f78e291260457588e093a 100644 (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
 
index 0914af7e5cfe31d16a3dd30341ec8a79db85fd24..edc8448f005a205ec45f84d9d63d0f1f98fd0d69 100644 (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 (