summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/socks-proxy-agent/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/node_modules/socks-proxy-agent/README.md')
-rw-r--r--deps/npm/node_modules/socks-proxy-agent/README.md3
1 files changed, 1 insertions, 2 deletions
diff --git a/deps/npm/node_modules/socks-proxy-agent/README.md b/deps/npm/node_modules/socks-proxy-agent/README.md
index 30d33500af..36028ad9f6 100644
--- a/deps/npm/node_modules/socks-proxy-agent/README.md
+++ b/deps/npm/node_modules/socks-proxy-agent/README.md
@@ -66,8 +66,7 @@ console.log('attempting to GET %j', endpoint);
var opts = url.parse(endpoint);
// create an instance of the `SocksProxyAgent` class with the proxy server information
-// NOTE: the `true` second argument! Means to use TLS encryption on the socket
-var agent = new SocksProxyAgent(proxy, true);
+var agent = new SocksProxyAgent(proxy);
opts.agent = agent;
https.get(opts, function (res) {