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:
commit
ced687fe71
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue