aboutsummaryrefslogtreecommitdiff
path: root/src/crypto
diff options
context:
space:
mode:
authorthekuwayama <thekuwayama@gmail.com>2024-12-30 20:00:49 +0000
committerGopher Robot <gobot@golang.org>2024-12-30 12:38:22 -0800
commit8857a5a33ffaff475abd6e4364d2c5a0f53c2baf (patch)
tree50fd5d26034e27645979218ae28d44222773d281 /src/crypto
parent3c4102bfd4dc87cba19152af834754170b863b39 (diff)
downloadgo-8857a5a33ffaff475abd6e4364d2c5a0f53c2baf.tar.xz
crypto/tls: fix misspelling in comment
Change-Id: Ie36a19ed6d6922e68f98e43745a417a24f8a7828 GitHub-Last-Rev: 6fb32e3d1d4f35704d466b53796e8ddeaf936d72 GitHub-Pull-Request: golang/go#71060 Reviewed-on: https://go-review.googlesource.com/c/go/+/639215 Auto-Submit: Ian Lance Taylor <iant@google.com> Reviewed-by: Roland Shoemaker <roland@golang.org> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Ian Lance Taylor <iant@google.com>
Diffstat (limited to 'src/crypto')
-rw-r--r--src/crypto/tls/handshake_messages.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crypto/tls/handshake_messages.go b/src/crypto/tls/handshake_messages.go
index fa00d7b741..6c6141c421 100644
--- a/src/crypto/tls/handshake_messages.go
+++ b/src/crypto/tls/handshake_messages.go
@@ -97,7 +97,7 @@ type clientHelloMsg struct {
pskBinders [][]byte
quicTransportParameters []byte
encryptedClientHello []byte
- // extensions are only populated on the servers-ide of a handshake
+ // extensions are only populated on the server-side of a handshake
extensions []uint16
}