]> Cypherpunks repositories - gostls13.git/commitdiff
all: fix spelling
authorJohn Bampton <jbampton@gmail.com>
Fri, 7 May 2021 10:47:28 +0000 (10:47 +0000)
committerIan Lance Taylor <iant@golang.org>
Fri, 14 May 2021 00:56:24 +0000 (00:56 +0000)
Change-Id: Id991d8e81e04835cabfb02d07a2199bfb553726c
GitHub-Last-Rev: 5d0b55d49127a2e2ba3148d20a58c52debcae12b
GitHub-Pull-Request: golang/go#44802
Reviewed-on: https://go-review.googlesource.com/c/go/+/299069
Run-TryBot: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Trust: Heschi Kreinick <heschi@google.com>

src/net/http/httputil/reverseproxy_test.go
src/net/http/socks_bundle.go

index b89eb90ad64b9279cfce0fb33b8eed0d67c497d6..22720caf930f2f167fa80c16fd3007793bf693dd 100644 (file)
@@ -1209,7 +1209,7 @@ func TestReverseProxyWebSocket(t *testing.T) {
        }
 }
 
-func TestReverseProxyWebSocketCancelation(t *testing.T) {
+func TestReverseProxyWebSocketCancellation(t *testing.T) {
        n := 5
        triggerCancelCh := make(chan bool, n)
        nthResponse := func(i int) string {
index e446669589905dcf71029c6774d75eab50279d76..e6db1c7640f976bea8ce94e266716966bbe5dbbc 100644 (file)
@@ -453,7 +453,7 @@ func (up *socksUsernamePassword) Authenticate(ctx context.Context, rw io.ReadWri
                b = append(b, up.Username...)
                b = append(b, byte(len(up.Password)))
                b = append(b, up.Password...)
-               // TODO(mikio): handle IO deadlines and cancelation if
+               // TODO(mikio): handle IO deadlines and cancellation if
                // necessary
                if _, err := rw.Write(b); err != nil {
                        return err