]> Cypherpunks repositories - gostls13.git/commitdiff
net/http: fix typo in comment
authorTobias Klauser <tklauser@distanz.ch>
Wed, 30 May 2018 08:15:56 +0000 (10:15 +0200)
committerTobias Klauser <tobias.klauser@gmail.com>
Wed, 30 May 2018 13:40:36 +0000 (13:40 +0000)
Change-Id: Ibb21c12bf67b2648eb7606bee8ec1b54e6c70dd5
Reviewed-on: https://go-review.googlesource.com/115237
Reviewed-by: Alberto Donizetti <alb.donizetti@gmail.com>
src/net/http/socks_bundle.go

index 5c3830a9e6dec7babafbccbd0722cb9146e959d5..8b347898e8501f265910d993eec036b1865d9d45 100644 (file)
@@ -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
 )