net/http: fix typographical error in transport.go

Change-Id: I5f9de0daa3c18ecd7d6cd30ea13d147e227b3550
GitHub-Last-Rev: 5eabcbd91f
GitHub-Pull-Request: golang/go#29454
Reviewed-on: https://go-review.googlesource.com/c/155920
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
Taufiq Rahman 2018-12-29 16:18:11 +00:00 committed by Brad Fitzpatrick
parent efbd01f1dc
commit 58a17b43d1

View file

@ -134,7 +134,7 @@ type Transport struct {
// //
// DialContext runs concurrently with calls to RoundTrip. // DialContext runs concurrently with calls to RoundTrip.
// A RoundTrip call that initiates a dial may end up using // A RoundTrip call that initiates a dial may end up using
// an connection dialed previously when the earlier connection // a connection dialed previously when the earlier connection
// becomes idle before the later DialContext completes. // becomes idle before the later DialContext completes.
DialContext func(ctx context.Context, network, addr string) (net.Conn, error) DialContext func(ctx context.Context, network, addr string) (net.Conn, error)
@ -142,7 +142,7 @@ type Transport struct {
// //
// Dial runs concurrently with calls to RoundTrip. // Dial runs concurrently with calls to RoundTrip.
// A RoundTrip call that initiates a dial may end up using // A RoundTrip call that initiates a dial may end up using
// an connection dialed previously when the earlier connection // a connection dialed previously when the earlier connection
// becomes idle before the later Dial completes. // becomes idle before the later Dial completes.
// //
// Deprecated: Use DialContext instead, which allows the transport // Deprecated: Use DialContext instead, which allows the transport