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: change coding style: def m( a ) -> def m(a).

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6189 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
aamine 2004-04-21 09:23:56 +00:00
parent 6562d8732d
commit ef36d75472
2 changed files with 31 additions and 28 deletions

View file

@ -1,3 +1,7 @@
Wed Apr 21 18:23:45 2004 Minero Aoki <aamine@loveruby.net>
* lib/net/smtp.rb: change coding style: def m( a ) -> def m(a).
Wed Apr 21 18:01:47 2004 Minero Aoki <aamine@loveruby.net>
* lib/net/pop.rb: do not use class variables.

View file

@ -284,8 +284,7 @@ module Net # :nodoc:
# * Net::SMTPUnknownError
# * IOError
# * TimeoutError
def SMTP.start( address, port = nil,
helo = 'localhost.localdomain',
def SMTP.start(address, port = nil, helo = 'localhost.localdomain',
user = nil, secret = nil, authtype = nil,
&block) # :yield: smtp
new(address, port).start(helo, user, secret, authtype, &block)