diff options
author | Kazuhiro NISHIYAMA <[email protected]> | 2020-07-13 11:33:40 +0900 |
---|---|---|
committer | Kazuhiro NISHIYAMA <[email protected]> | 2020-07-13 11:33:40 +0900 |
commit | 16bc9bf7e85ed301498ccdea04569af1808559c2 (patch) | |
tree | 7788fb01eba5195d006c14db74d35ba9aae70903 /lib/uri/common.rb | |
parent | 7e536b3be26ae48738a036a58be8dfa380bd21da (diff) |
[DOC] Use https:// instead of http:// [ci skip]
Diffstat (limited to 'lib/uri/common.rb')
-rw-r--r-- | lib/uri/common.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/uri/common.rb b/lib/uri/common.rb index 67a4cbafab..67be44e012 100644 --- a/lib/uri/common.rb +++ b/lib/uri/common.rb @@ -375,7 +375,7 @@ module URI # If +enc+ is given, convert +str+ to the encoding before percent encoding. # # This is an implementation of - # http://www.w3.org/TR/2013/CR-html5-20130806/forms.html#url-encoded-form-data. + # https://www.w3.org/TR/2013/CR-html5-20130806/forms.html#url-encoded-form-data. # # See URI.decode_www_form_component, URI.encode_www_form. def self.encode_www_form_component(str, enc=nil) @@ -416,7 +416,7 @@ module URI # This method doesn't handle files. When you send a file, use # multipart/form-data. # - # This refers http://url.spec.whatwg.org/#concept-urlencoded-serializer + # This refers https://url.spec.whatwg.org/#concept-urlencoded-serializer # # URI.encode_www_form([["q", "ruby"], ["lang", "en"]]) # #=> "q=ruby&lang=en" |