diff options
| author | mame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-10-31 12:31:22 +0000 |
|---|---|---|
| committer | mame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-10-31 12:31:22 +0000 |
| commit | 29fe51668e2008ced9cd73af31f7933fe205e461 (patch) | |
| tree | c175a6835f33c924aff4ce5614ed01379777e276 /lib | |
| parent | 7a07099539b04e509b55572e8308320b11844ea7 (diff) | |
| download | ruby-29fe51668e2008ced9cd73af31f7933fe205e461.tar.gz ruby-29fe51668e2008ced9cd73af31f7933fe205e461.tar.xz ruby-29fe51668e2008ced9cd73af31f7933fe205e461.zip | |
* lib/webrick/httpauth/digestauth.rb
(WEBrick::HTTPAuth::DigestAuth#initialize): fix typo.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20078 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/webrick/httpauth/digestauth.rb | 2 |
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 |
