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

* lib/net/smtp.rb (Net::SMTP#rcptto_list): fixed typo.

[ruby-core:29809]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27512 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2010-04-27 09:00:52 +00:00
parent 336a8301f7
commit 6fd326e76c
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Tue Apr 27 18:00:50 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
* lib/net/smtp.rb (Net::SMTP#rcptto_list): fixed typo.
[ruby-core:29809]
Tue Apr 27 12:44:23 2010 Eric Hodel <drbrain@segment7.net>
* lib/rdoc: Import RDoc 2.5.7. Fixes #1318 and ruby-core:29780.

View file

@ -839,7 +839,7 @@ module Net
ok_users << addr
end
end
raise ArgumentError, 'mail destination not given' if ok_addrs.empty?
raise ArgumentError, 'mail destination not given' if ok_users.empty?
ret = yield
unless unknown_users.empty?
raise SMTPAuthenticationError, "failed to deliver for #{unknown_users.join(', ')}"