diff options
| author | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-01-16 15:12:02 +0000 |
|---|---|---|
| committer | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-01-16 15:12:02 +0000 |
| commit | 8f58c80e55642b36d42698bd8f6ef3c21f339c33 (patch) | |
| tree | 8efd43280c4c7a7a22ac718a370dfcfb74ba65cd | |
| parent | 3e2ed2103a7fd2576d05303d4b6732768713e3b5 (diff) | |
| download | ruby-8f58c80e55642b36d42698bd8f6ef3c21f339c33.tar.gz ruby-8f58c80e55642b36d42698bd8f6ef3c21f339c33.tar.xz ruby-8f58c80e55642b36d42698bd8f6ef3c21f339c33.zip | |
* lib/uri/common.rb (PORT): typo fix. fiex: [ruby-core:04256]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@7777 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | lib/uri/common.rb | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -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 diff --git a/lib/uri/common.rb b/lib/uri/common.rb index 1e59c0fa3..cb00bc114 100644 --- a/lib/uri/common.rb +++ b/lib/uri/common.rb @@ -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})?" |
