From b5b516e1cfa462174d40c758e35962c79e57096a Mon Sep 17 00:00:00 2001 From: Cyrille Hemidy Date: Fri, 13 Apr 2018 19:19:49 +0200 Subject: [PATCH] Update proxy.go fix mispelling --- proxy.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxy.go b/proxy.go index 102538b..bf2478e 100644 --- a/proxy.go +++ b/proxy.go @@ -14,7 +14,7 @@ import ( "strings" ) -type netDialerFunc func(netowrk, addr string) (net.Conn, error) +type netDialerFunc func(network, addr string) (net.Conn, error) func (fn netDialerFunc) Dial(network, addr string) (net.Conn, error) { return fn(network, addr)