* lib/uri/common.rb (PORT): typo fix. fiex: [ruby-core:04256]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7777 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
eban 2005-01-16 15:12:02 +00:00
Родитель 74252bf135
Коммит e174328097
2 изменённых файлов: 5 добавлений и 1 удалений

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

@ -1,3 +1,7 @@
Mon Jan 17 00:09:42 2005 WATANABE Hirofumi <eban@ruby-lang.org>
* lib/uri/common.rb (PORT): typo fix. fiex: [ruby-core:04256]
Sat Jan 15 14:57:22 2005 Nobuyoshi Nakada <nobu@ruby-lang.org>
* ruby.c (proc_options): ignore trailing CRs at the end of short

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

@ -88,7 +88,7 @@ module URI
# host = hostname | IPv4address | IPv6reference (RFC 2732)
HOST = "(?:#{HOSTNAME}|#{IPV4ADDR}|#{IPV6REF})"
# port = *digit
PORT = "\d*"
PORT = '\d*'
# hostport = host [ ":" port ]
HOSTPORT = "#{HOST}(?::#{PORT})?"