From 3d777c13b038a1452fdf839104328371bf637982 Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Wed, 23 Jun 2021 22:08:47 -0700 Subject: [PATCH] net/socks5: fix a typo Signed-off-by: Brad Fitzpatrick --- net/socks5/socks5.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/socks5/socks5.go b/net/socks5/socks5.go index 89b7c126b..4303f1a99 100644 --- a/net/socks5/socks5.go +++ b/net/socks5/socks5.go @@ -32,7 +32,7 @@ const ( // that represent the kind of connection the client needs. type commandType byte -// The set of valid SOCKS5 commans as described in RFC 1928. +// The set of valid SOCKS5 commands as described in RFC 1928. const ( connect commandType = 1 bind commandType = 2