[前][次][番号順一覧][スレッド一覧]

ruby-changes:8544

From: mame <ko1@a...>
Date: Fri, 31 Oct 2008 21:31:44 +0900 (JST)
Subject: [ruby-changes:8544] Ruby:r20078 (trunk, ruby_1_9_1): * lib/webrick/httpauth/digestauth.rb

mame	2008-10-31 21:31:22 +0900 (Fri, 31 Oct 2008)

  New Revision: 20078

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=20078

  Log:
    * lib/webrick/httpauth/digestauth.rb
      (WEBrick::HTTPAuth::DigestAuth#initialize): fix typo.

  Modified files:
    branches/ruby_1_9_1/ChangeLog
    branches/ruby_1_9_1/lib/webrick/httpauth/digestauth.rb
    trunk/ChangeLog
    trunk/lib/webrick/httpauth/digestauth.rb

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 20077)
+++ ChangeLog	(revision 20078)
@@ -1,3 +1,8 @@
+Fri Oct 31 21:28:14 2008  Yusuke Endoh  <mame@t...>
+
+	* lib/webrick/httpauth/digestauth.rb
+	  (WEBrick::HTTPAuth::DigestAuth#initialize): fix typo.
+
 Fri Oct 31 18:51:42 2008  Yuki Sonoda (Yugui)  <yugui@y...>
 
 	* test/ruby/test_array.rb (test_array_subclass): test for r20076.
Index: lib/webrick/httpauth/digestauth.rb
===================================================================
--- lib/webrick/httpauth/digestauth.rb	(revision 20077)
+++ lib/webrick/httpauth/digestauth.rb	(revision 20078)
@@ -52,7 +52,7 @@
         when 'SHA1','SHA1-sess'  # it is a bonus feature :-)
           @h = Digest::SHA1
         else
-          msg = format('Alogrithm "%s" is not supported.', @algorithm)
+          msg = format('Algorithm "%s" is not supported.', @algorithm)
           raise ArgumentError.new(msg)
         end
 
Index: ruby_1_9_1/ChangeLog
===================================================================
--- ruby_1_9_1/ChangeLog	(revision 20077)
+++ ruby_1_9_1/ChangeLog	(revision 20078)
@@ -1,3 +1,8 @@
+Fri Oct 31 21:28:14 2008  Yusuke Endoh  <mame@t...>
+
+	* lib/webrick/httpauth/digestauth.rb
+	  (WEBrick::HTTPAuth::DigestAuth#initialize): fix typo.
+
 Fri Oct 31 18:51:42 2008  Yuki Sonoda (Yugui)  <yugui@y...>
 
 	* test/ruby/test_array.rb (test_array_subclass): test for r20076.
Index: ruby_1_9_1/lib/webrick/httpauth/digestauth.rb
===================================================================
--- ruby_1_9_1/lib/webrick/httpauth/digestauth.rb	(revision 20077)
+++ ruby_1_9_1/lib/webrick/httpauth/digestauth.rb	(revision 20078)
@@ -52,7 +52,7 @@
         when 'SHA1','SHA1-sess'  # it is a bonus feature :-)
           @h = Digest::SHA1
         else
-          msg = format('Alogrithm "%s" is not supported.', @algorithm)
+          msg = format('Algorithm "%s" is not supported.', @algorithm)
           raise ArgumentError.new(msg)
         end
 

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]