summaryrefslogtreecommitdiffstats
path: root/lib
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
commita2f41c54ef2014c7fe2837ad2c6be232eb8efa37 (patch)
treec5a2a1352fb55fa858fa43eb5d38ff54cf66e653 /lib
parent5dd0d970881e92992b4015f105bd7a28be959b1a (diff)
downloadruby-a2f41c54ef2014c7fe2837ad2c6be232eb8efa37.tar.gz
ruby-a2f41c54ef2014c7fe2837ad2c6be232eb8efa37.tar.xz
ruby-a2f41c54ef2014c7fe2837ad2c6be232eb8efa37.zip
* lib/webrick/httpauth/digestauth.rb
(WEBrick::HTTPAuth::DigestAuth#initialize): fix typo. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_9_1@20078 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/webrick/httpauth/digestauth.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/webrick/httpauth/digestauth.rb b/lib/webrick/httpauth/digestauth.rb
index 2bc3e9781..9510c11d3 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