From 5e8c38f2c9502a1eabe3ca044bf658fbb778bed3 Mon Sep 17 00:00:00 2001 From: Filippo Valsorda Date: Wed, 24 Jun 2020 14:29:20 -0400 Subject: [PATCH] crypto/tls: fix DialContext docs Change-Id: I58e3febbf63049bebb4f8ed8893288183c8aaccd Reviewed-on: https://go-review.googlesource.com/c/go/+/239745 Run-TryBot: Filippo Valsorda TryBot-Result: Gobot Gobot Reviewed-by: Katie Hockman --- tls.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tls.go b/tls.go index 36d98d3..1c5173e 100644 --- a/tls.go +++ b/tls.go @@ -235,7 +235,7 @@ func (d *Dialer) netDialer() *net.Dialer { return new(net.Dialer) } -// Dial connects to the given network address and initiates a TLS +// DialContext connects to the given network address and initiates a TLS // handshake, returning the resulting TLS connection. // // The provided Context must be non-nil. If the context expires before