summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-10-31 12:31:22 +0000
committermame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-10-31 12:31:22 +0000
commitc45f86973c35905703d1fcddd72fcac47175a14e (patch)
treec5a2a1352fb55fa858fa43eb5d38ff54cf66e653
parent0dff63910a779fbeffac9b4cec7892593ea3b7d0 (diff)
* lib/webrick/httpauth/digestauth.rb
(WEBrick::HTTPAuth::DigestAuth#initialize): fix typo. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_1@20078 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--lib/webrick/httpauth/digestauth.rb2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 5f5a2eb5dd..3cdf63a9cd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Fri Oct 31 21:28:14 2008 Yusuke Endoh <mame@tsg.ne.jp>
+
+ * lib/webrick/httpauth/digestauth.rb
+ (WEBrick::HTTPAuth::DigestAuth#initialize): fix typo.
+
Fri Oct 31 18:51:42 2008 Yuki Sonoda (Yugui) <yugui@yugui.jp>
* test/ruby/test_array.rb (test_array_subclass): test for r20076.
diff --git a/lib/webrick/httpauth/digestauth.rb b/lib/webrick/httpauth/digestauth.rb
index 2bc3e97817..9510c11d3b 100644
--- a/lib/webrick/httpauth/digestauth.rb
+++ b/lib/webrick/httpauth/digestauth.rb
@@ -52,7 +52,7 @@ module WEBrick
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