summaryrefslogtreecommitdiff
path: root/lib/uri
diff options
context:
space:
mode:
Diffstat (limited to 'lib/uri')
-rw-r--r--lib/uri/http.rb6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/uri/http.rb b/lib/uri/http.rb
index 9877b1ee59..fb23a5d4c9 100644
--- a/lib/uri/http.rb
+++ b/lib/uri/http.rb
@@ -62,6 +62,7 @@ module URI
return super(tmp)
end
+=begin
#
# == Description
#
@@ -74,8 +75,8 @@ module URI
#
# Example:
#
- # uri = URI::HTTP.new('http', nil, "www.example.com", nil, "/path",
- # "query", 'fragment')
+ # uri = URI::HTTP.new("http", nil, "www.example.com", nil, nil,
+ # "/path", nil, "query", "fragment")
#
#
# See also URI::Generic.new
@@ -83,6 +84,7 @@ module URI
def initialize(*arg)
super(*arg)
end
+=end
#
# == Description