From 5438e9b7bfbc0fde63ae97db95a1f036ffa022c8 Mon Sep 17 00:00:00 2001 From: Evan Cameron Date: Mon, 9 Nov 2020 11:07:12 -0500 Subject: [PATCH] docs(example): fix http_proxy comment (#2324) --- examples/http_proxy.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/http_proxy.rs b/examples/http_proxy.rs index e237b995..39b2a464 100644 --- a/examples/http_proxy.rs +++ b/examples/http_proxy.rs @@ -18,8 +18,8 @@ type HttpClient = Client; // 2. config http_proxy in command line // $ export http_proxy=http://127.0.0.1:8100 // $ export https_proxy=http://127.0.0.1:8100 -// 3. send requests -// $ curl -i https://www.some_domain.com/ +// 3. send requests (don't use a domain name) +// $ curl -i https://8.8.8.8 #[tokio::main] async fn main() { let addr = SocketAddr::from(([127, 0, 0, 1], 8100));