aboutsummaryrefslogtreecommitdiff
path: root/src/net/http/socks_bundle.go
diff options
context:
space:
mode:
authorNicholas S. Husin <nsh@golang.org>2025-10-02 12:41:25 -0400
committerNicholas Husin <nsh@golang.org>2025-10-02 12:52:26 -0700
commitbbdff9e8e1fca772a13acb0c4c7828cfe246d403 (patch)
tree6cd37f083916b77c30c505e28dc43fa9fca8df17 /src/net/http/socks_bundle.go
parent4008e07080ef215e46f48e5e2f6b5d37d6d9cb9f (diff)
downloadgo-bbdff9e8e1fca772a13acb0c4c7828cfe246d403.tar.xz
net/http: update bundled x/net/http2 and delete obsolete http2inTests
http2inTests is no longer needed after go.dev/cl/708135 and should be deleted. To prevent errors in future vendored dependency updates, h2_bundle.go is also updated together in this change. Change-Id: I7b8c3f6854203fab4ec639a2a268df0cd2b1dee7 Reviewed-on: https://go-review.googlesource.com/c/go/+/708595 Reviewed-by: Damien Neil <dneil@google.com> Reviewed-by: Nicholas Husin <husin@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Diffstat (limited to 'src/net/http/socks_bundle.go')
-rw-r--r--src/net/http/socks_bundle.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/http/socks_bundle.go b/src/net/http/socks_bundle.go
index 776b03d941..862e5fa2a5 100644
--- a/src/net/http/socks_bundle.go
+++ b/src/net/http/socks_bundle.go
@@ -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