summaryrefslogtreecommitdiff
path: root/lib/net/http.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/net/http.rb')
-rw-r--r--lib/net/http.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/net/http.rb b/lib/net/http.rb
index ccabbff8e3..bf74172bf5 100644
--- a/lib/net/http.rb
+++ b/lib/net/http.rb
@@ -1618,7 +1618,7 @@ module Net # :nodoc:
# response, body = Net::HTTP.get(....)
#
def to_ary
- warn "net/http: warning: old style assignment found at #{caller(1)[0]}" if $VERBOSE
+ warn "net/http.rb: warning: Net::HTTP v1.1 style assignment found at #{caller(1)[0]}; use `response = http.get(...)' instead." if $VERBOSE
[self, body()]
end