From: Alex Harford Date: Fri, 6 Dec 2019 23:27:29 +0000 (+0000) Subject: crypto/tls: fix a typo in TLS handshake comment X-Git-Tag: go1.14beta1~41 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=33d20760a23acffd3b200b922c5687ed2aeb74cc;p=gostls13.git crypto/tls: fix a typo in TLS handshake comment Fix a minor typo in the TLS handshake comment. Change-Id: I0fd243e5440f6c77c97e844e6669a7974a2c8798 GitHub-Last-Rev: 21e91a1a48e8a9200e6fca89a988e1383ded7bb2 GitHub-Pull-Request: golang/go#36030 Reviewed-on: https://go-review.googlesource.com/c/go/+/210289 Reviewed-by: Brad Fitzpatrick --- 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() }