From: Brad Fitzpatrick Date: Wed, 19 Oct 2011 15:48:26 +0000 (-0700) Subject: http: comment tweaks X-Git-Tag: weekly.2011-10-25~33 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=314afb417a9372290ffcf1b456f531e91b7667b9;p=gostls13.git http: comment tweaks It hasn't been primitive in a while. R=golang-dev, adg CC=golang-dev https://golang.org/cl/5287041 --- 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 (