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

Merge pull request #18163 from y-yagi/fix_nodoc_typo

fix typo in nodoc [ci skip]
This commit is contained in:
Yves Senn 2014-12-23 08:42:16 +01:00
commit ced687fe71

View file

@ -3,10 +3,10 @@ require 'active_job'
module ActionMailer
# The <tt>ActionMailer::DeliveryJob</tt> class is used when you
# want to send emails outside of the request-response cycle.
class DeliveryJob < ActiveJob::Base #:nodoc:
class DeliveryJob < ActiveJob::Base # :nodoc:
queue_as :mailers
def perform(mailer, mail_method, delivery_method, *args) #:nodoc#
def perform(mailer, mail_method, delivery_method, *args) #:nodoc:
mailer.constantize.public_send(mail_method, *args).send(delivery_method)
end
end