Skip to content

Commit 67afa4a

Browse files
committed
proxy: fix wrong function name in comment
R=golang-dev, minux.ma CC=golang-dev https://golang.org/cl/6459055
1 parent c906410 commit 67afa4a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

proxy/per_host.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ func NewPerHost(defaultDialer, bypass Dialer) *PerHost {
3030
}
3131
}
3232

33-
// Dial connects to the address addr on the network net through either
33+
// Dial connects to the address addr on the given network through either
3434
// defaultDialer or bypass.
3535
func (p *PerHost) Dial(network, addr string) (c net.Conn, err error) {
3636
host, _, err := net.SplitHostPort(addr)
@@ -112,9 +112,9 @@ func (p *PerHost) AddIP(ip net.IP) {
112112
p.bypassIPs = append(p.bypassIPs, ip)
113113
}
114114

115-
// AddIP specifies an IP range that will use the bypass proxy. Note that this
116-
// will only take effect if a literal IP address is dialed. A connection to a
117-
// named host will never match.
115+
// AddNetwork specifies an IP range that will use the bypass proxy. Note that
116+
// this will only take effect if a literal IP address is dialed. A connection
117+
// to a named host will never match.
118118
func (p *PerHost) AddNetwork(net *net.IPNet) {
119119
p.bypassNetworks = append(p.bypassNetworks, net)
120120
}

0 commit comments

Comments
 (0)