ruby-changes:40500
From: hsbt <ko1@a...>
Date: Mon, 16 Nov 2015 12:11:39 +0900 (JST)
Subject: [ruby-changes:40500] hsbt:r52581 (trunk): * lib/webrick/httpauth/basicauth.rb: fix a typo.
hsbt 2015-11-16 12:11:20 +0900 (Mon, 16 Nov 2015) New Revision: 52581 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=52581 Log: * lib/webrick/httpauth/basicauth.rb: fix a typo. [ci skip][fix GH-1099] Patch by @jwworth * lib/webrick/httpauth/digestauth.rb: ditto. Modified files: trunk/ChangeLog trunk/lib/webrick/httpauth/basicauth.rb trunk/lib/webrick/httpauth/digestauth.rb Index: ChangeLog =================================================================== --- ChangeLog (revision 52580) +++ ChangeLog (revision 52581) @@ -1,3 +1,9 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Mon Nov 16 12:11:11 2015 SHIBATA Hiroshi <hsbt@r...> + + * lib/webrick/httpauth/basicauth.rb: fix a typo. + [ci skip][fix GH-1099] Patch by @jwworth + * lib/webrick/httpauth/digestauth.rb: ditto. + Sun Nov 15 18:28:43 2015 Kenichi Kamiya <kachick1@g...> * vm_method.c (set_method_visibility): should fail if the receiver Index: lib/webrick/httpauth/digestauth.rb =================================================================== --- lib/webrick/httpauth/digestauth.rb (revision 52580) +++ lib/webrick/httpauth/digestauth.rb (revision 52581) @@ -128,8 +128,7 @@ module WEBrick https://github.com/ruby/ruby/blob/trunk/lib/webrick/httpauth/digestauth.rb#L128 end ## - # Returns a challenge response which asks for for authentication - # information + # Returns a challenge response which asks for authentication information def challenge(req, res, stale=false) nonce = generate_next_nonce(req) Index: lib/webrick/httpauth/basicauth.rb =================================================================== --- lib/webrick/httpauth/basicauth.rb (revision 52580) +++ lib/webrick/httpauth/basicauth.rb (revision 52581) @@ -89,8 +89,7 @@ module WEBrick https://github.com/ruby/ruby/blob/trunk/lib/webrick/httpauth/basicauth.rb#L89 end ## - # Returns a challenge response which asks for for authentication - # information + # Returns a challenge response which asks for authentication information def challenge(req, res) res[@response_field] = "#{@auth_scheme} realm=\"#{@realm}\"" -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/