[ruby/open-uri] [DOC] Fix markup for `URI.open`

* Add missing slash.

https://github.com/ruby/open-uri/commit/40023e63da
This commit is contained in:
Alexander Ilyin 2022-06-06 17:16:36 +03:00 коммит произвёл git
Родитель 66a9e452bb
Коммит 6fc16e748e
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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 <code>(protocol)://<code>, it is parsed by
# If the first argument is a string that begins with <code>(protocol)://</code>, 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.
#