[DOC] URI::Generic#port returns Integer [ci skip]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63247 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
kazu 2018-04-23 12:09:21 +00:00
Родитель c6ad7a6272
Коммит 425118b898
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -245,8 +245,8 @@ module URI
# Returns the port component of the URI.
#
# URI("http://foo/bar/baz").port #=> "80"
# URI("http://foo:8080/bar/baz").port #=> "8080"
# URI("http://foo/bar/baz").port #=> 80
# URI("http://foo:8080/bar/baz").port #=> 8080
#
attr_reader :port