From 5eabcbd91f8988c8f74f5bd11fb0e79cb85a9451 Mon Sep 17 00:00:00 2001 From: Taufiq Rahman Date: Sat, 29 Dec 2018 21:55:50 +0600 Subject: [PATCH] fix typographical error in transport.go --- src/net/http/transport.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/net/http/transport.go b/src/net/http/transport.go index 44d27d05c2f..a8c5efe6aaf 100644 --- a/src/net/http/transport.go +++ b/src/net/http/transport.go @@ -134,7 +134,7 @@ type Transport struct { // // DialContext runs concurrently with calls to RoundTrip. // 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. 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. // 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. // // Deprecated: Use DialContext instead, which allows the transport