From 6fc16e748ee3a95d0134c180c6f33d947163f3d7 Mon Sep 17 00:00:00 2001 From: Alexander Ilyin Date: Mon, 6 Jun 2022 17:16:36 +0300 Subject: [PATCH] [ruby/open-uri] [DOC] Fix markup for `URI.open` * Add missing slash. https://github.com/ruby/open-uri/commit/40023e63da --- lib/open-uri.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/open-uri.rb b/lib/open-uri.rb index e33e57a7f6..cb9c3aa505 100644 --- a/lib/open-uri.rb +++ b/lib/open-uri.rb @@ -9,7 +9,7 @@ module URI # If the first argument responds to the 'open' method, 'open' is called on # it with the rest of the arguments. # - # If the first argument is a string that begins with (protocol)://, it is parsed by + # If the first argument is a string that begins with (protocol)://, it is parsed by # URI.parse. If the parsed object responds to the 'open' method, # 'open' is called on it with the rest of the arguments. #