summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsodacris <wjxa20152015@gmai.com>2024-11-12 09:03:08 +0800
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2025-10-31 10:38:23 +0900
commitf0993de1c20b5618df6915ef72321b0923c70874 (patch)
treee48aae5f9e7b307ea404bdffc1647d8258e815f6
parent1dce0ae55a58aa11baf25e9ff92b64974e673361 (diff)
[ruby/uri] improve error message
https://github.com/ruby/uri/commit/1c6e81b721
-rw-r--r--lib/uri/generic.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/uri/generic.rb b/lib/uri/generic.rb
index 634da49fe9..6fd0f7c420 100644
--- a/lib/uri/generic.rb
+++ b/lib/uri/generic.rb
@@ -1540,7 +1540,7 @@ module URI
else
unless proxy_uri = env[name]
if proxy_uri = env[name.upcase]
- warn 'The environment variable HTTP_PROXY is discouraged. Use http_proxy.', uplevel: 1
+ warn 'The environment variable HTTP_PROXY is discouraged. Please use http_proxy instead.', uplevel: 1
end
end
end