From b6f4ac9b5f1c6deb302263201aa7f92ecb02fd18 Mon Sep 17 00:00:00 2001 From: Samuel Crypto Date: Sun, 28 Oct 2018 15:38:02 -0400 Subject: [PATCH] Minor typo in comment --- src/js/proxified-containers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/proxified-containers.js b/src/js/proxified-containers.js index 431b70d..85a1ed4 100644 --- a/src/js/proxified-containers.js +++ b/src/js/proxified-containers.js @@ -127,7 +127,7 @@ proxifiedContainers = { }); }, - //Parses a proxy description string of the format host[:port] or username:password@[host:port] (port is optional) + //Parses a proxy description string of the format host[:port] or username:password@host[:port] (port is optional) parseProxy(proxy_str) { const regexp = /(\b(\w+):(\w+)@)?(((?:\d{1,3}\.){3}\d{1,3}\b)|(\b(\w+)(\.(\w+))+))(:(\d+))?/; if (regexp.test(proxy_str) !== true)