ruby-changes:14300
From: matz <ko1@a...>
Date: Sat, 19 Dec 2009 17:01:34 +0900 (JST)
Subject: [ruby-changes:14300] Ruby:r26126 (trunk): * lib/webrick/config.rb (WEBrick::Config): typo fixed. a patch
matz 2009-12-19 17:01:19 +0900 (Sat, 19 Dec 2009) New Revision: 26126 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=26126 Log: * lib/webrick/config.rb (WEBrick::Config): typo fixed. a patch from Sho Hashimoto in [ruby-dev:39835]. Modified files: trunk/ChangeLog trunk/lib/webrick/config.rb Index: ChangeLog =================================================================== --- ChangeLog (revision 26125) +++ ChangeLog (revision 26126) @@ -1,3 +1,8 @@ +Sat Dec 19 14:57:17 2009 Yukihiro Matsumoto <matz@r...> + + * lib/webrick/config.rb (WEBrick::Config): typo fixed. a patch + from Sho Hashimoto in [ruby-dev:39835]. + Sat Dec 19 11:06:48 2009 Marc-Andre Lafortune <ruby-core@m...> * lib/matrix.rb (each2,collect2,map2): Fix enumerator Index: lib/webrick/config.rb =================================================================== --- lib/webrick/config.rb (revision 26125) +++ lib/webrick/config.rb (revision 26126) @@ -22,7 +22,7 @@ General = { :ServerName => Utils::getservername, :BindAddress => nil, # "0.0.0.0" or "::" or nil - :Port => nil, # users MUST specifiy this!! + :Port => nil, # users MUST specify this!! :MaxClients => 100, # maximum number of the concurrent connections :ServerType => nil, # default: WEBrick::SimpleServer :Logger => nil, # default: WEBrick::Log.new -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/