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
1 changed files with 2 additions and 2 deletions

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