From: Tobias Klauser Date: Wed, 30 May 2018 08:15:56 +0000 (+0200) Subject: net/http: fix typo in comment X-Git-Tag: go1.11beta1~270 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=e023d5b0ac37310ce8a06e33e751a9a7c632046d;p=gostls13.git net/http: fix typo in comment Change-Id: Ibb21c12bf67b2648eb7606bee8ec1b54e6c70dd5 Reviewed-on: https://go-review.googlesource.com/115237 Reviewed-by: Alberto Donizetti --- diff --git a/src/net/http/socks_bundle.go b/src/net/http/socks_bundle.go index 5c3830a9e6..8b347898e8 100644 --- a/src/net/http/socks_bundle.go +++ b/src/net/http/socks_bundle.go @@ -231,7 +231,7 @@ const ( socksAuthMethodNotRequired socksAuthMethod = 0x00 // no authentication required socksAuthMethodUsernamePassword socksAuthMethod = 0x02 // use username/password - socksAuthMethodNoAcceptableMethods socksAuthMethod = 0xff // no acceptable authetication methods + socksAuthMethodNoAcceptableMethods socksAuthMethod = 0xff // no acceptable authentication methods socksStatusSucceeded socksReply = 0x00 )