1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/webrick/httpauth/digestauth.rb: Fix typo in an error message.

* test/ruby/test_parse.rb: Fix typo in a test name.

s/allowd/allowed/

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43917 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
a_matsuda 2013-11-29 14:03:26 +00:00
parent 44cb6eaef9
commit 0c85ffd8a7
2 changed files with 2 additions and 2 deletions

View file

@ -204,7 +204,7 @@ module WEBrick
password = @userdb.get_passwd(@realm, auth_req['username'], @reload_db)
unless password
error('%s: the user is not allowd.', auth_req['username'])
error('%s: the user is not allowed.', auth_req['username'])
return false
end