From 7ce7d014c0c46b320f9e4b742ae9360d1b5cf4dc Mon Sep 17 00:00:00 2001 From: guoguangwu Date: Wed, 21 Feb 2024 15:09:09 +0800 Subject: [PATCH] crypto/tls: fix typo in comment Signed-off-by: guoguangwu --- src/crypto/tls/tls_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crypto/tls/tls_test.go b/src/crypto/tls/tls_test.go index 42a0272f00..096b4ed227 100644 --- a/src/crypto/tls/tls_test.go +++ b/src/crypto/tls/tls_test.go @@ -211,7 +211,7 @@ func TestDialTimeout(t *testing.T) { t.Logf("Listener accepted a connection from %s", lconn.RemoteAddr()) lconn.Close() } - // Close any spurious extra connecitions from the listener. (This is + // Close any spurious extra connections from the listener. (This is // possible if there are, for example, stray Dial calls from other tests.) for extraConn := range acceptc { t.Logf("spurious extra connection from %s", extraConn.RemoteAddr())