1
0
mirror of https://github.com/golang/go synced 2024-11-12 06:20:22 -07:00

net/http: remove useless named result arguments in type

R=golang-dev, minux.ma
CC=golang-dev
https://golang.org/cl/8276043
This commit is contained in:
Brad Fitzpatrick 2013-04-02 12:12:16 -07:00
parent 79682199ce
commit 5be0dad116

View File

@ -58,7 +58,7 @@ type Transport struct {
// Dial specifies the dial function for creating TCP
// connections.
// If Dial is nil, net.Dial is used.
Dial func(net, addr string) (c net.Conn, err error)
Dial func(network, addr string) (net.Conn, error)
// TLSClientConfig specifies the TLS configuration to use with
// tls.Client. If nil, the default configuration is used.