From 21e91a1a48e8a9200e6fca89a988e1383ded7bb2 Mon Sep 17 00:00:00 2001 From: Alex Harford Date: Fri, 6 Dec 2019 15:17:50 -0800 Subject: [PATCH] Fix TLS handshake typo --- src/crypto/tls/conn.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crypto/tls/conn.go b/src/crypto/tls/conn.go index 029f7443d2..fac4b91473 100644 --- a/src/crypto/tls/conn.go +++ b/src/crypto/tls/conn.go @@ -1344,7 +1344,7 @@ func (c *Conn) Handshake() error { if c.handshakeErr == nil { c.handshakes++ } else { - // If an error occurred during the hadshake try to flush the + // If an error occurred during the handshake try to flush the // alert that might be left in the buffer. c.flush() }