From a3f9cbee9898a336e1aa963d8b343ed685e4ae74 Mon Sep 17 00:00:00 2001 From: eban Date: Sun, 16 Jan 2005 15:12:02 +0000 Subject: * lib/uri/common.rb (PORT): typo fix. fiex: [ruby-core:04256] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7777 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/uri/common.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') 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})?" -- cgit