From 3ffb0577c5472c869a4d03fadee43cbfebbc95db Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Tue, 16 Apr 2019 21:39:00 +0000 Subject: [PATCH] crypto/tls, crypto/x509: update spelling of marshal* Per https://golang.org/wiki/Spelling and CL 33017. Change-Id: Ia813a81d25603883114c4e4b6997eb560d6a3690 Reviewed-on: https://go-review.googlesource.com/c/go/+/172457 Reviewed-by: Dmitri Shuralyov --- handshake_messages.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/handshake_messages.go b/handshake_messages.go index 864fbd4..2d21377 100644 --- a/handshake_messages.go +++ b/handshake_messages.go @@ -320,7 +320,7 @@ func (m *clientHelloMsg) marshalWithoutBinders() []byte { } // updateBinders updates the m.pskBinders field, if necessary updating the -// cached marshalled representation. The supplied binders must have the same +// cached marshaled representation. The supplied binders must have the same // length as the current m.pskBinders. func (m *clientHelloMsg) updateBinders(pskBinders [][]byte) { if len(pskBinders) != len(m.pskBinders) {