all: fix spellings

This follows the spelling choices that the Go project has made for English words.
https://github.com/golang/go/wiki/Spelling

Change-Id: Ie7c586d2cf23020cb492cfff58c0831d2d8d3a78
GitHub-Last-Rev: e16a32cd225a275f73d236bcb33703986d110ded
GitHub-Pull-Request: golang/go#45442
Reviewed-on: https://go-review.googlesource.com/c/go/+/308291
Run-TryBot: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Trust: Emmanuel Odeke <emmanuel@orijtech.com>
This commit is contained in:
Naman Gera 2021-04-09 03:48:14 +00:00 committed by Emmanuel Odeke
parent 8d9828485f
commit 6326a14b62

View file

@ -1989,7 +1989,7 @@ func TestServerHandshakeContextCancellation(t *testing.T) {
// TestHandshakeContextHierarchy tests whether the contexts
// available to GetClientCertificate and GetCertificate are
// derived from the context provided to HandshakeContext, and
// that those contexts are cancelled after HandshakeContext has
// that those contexts are canceled after HandshakeContext has
// returned.
func TestHandshakeContextHierarchy(t *testing.T) {
c, s := localPipe(t)
@ -2024,7 +2024,7 @@ func TestHandshakeContextHierarchy(t *testing.T) {
select {
case <-innerCtx.Done():
default:
t.Errorf("GetClientCertificate context was not cancelled after HandshakeContext returned.")
t.Errorf("GetClientCertificate context was not canceled after HandshakeContext returned.")
}
}()
var innerCtx context.Context
@ -2048,7 +2048,7 @@ func TestHandshakeContextHierarchy(t *testing.T) {
select {
case <-innerCtx.Done():
default:
t.Errorf("GetCertificate context was not cancelled after HandshakeContext returned.")
t.Errorf("GetCertificate context was not canceled after HandshakeContext returned.")
}
if err := <-clientErr; err != nil {
t.Errorf("Unexpected client error: %v", err)