diff options
author | Xavier Noria <fxn@hashref.com> | 2014-08-21 23:27:40 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2014-08-21 23:28:10 +0200 |
commit | a57f7b57976c74dd76c911f867b76197119546e6 (patch) | |
tree | a50c9aff145a6a2c907d26b752bb582f9806713a /guides | |
parent | b6ccaee952b2b7fd74c4218e4037de02b2ccda3b (diff) | |
download | rails-a57f7b57976c74dd76c911f867b76197119546e6.tar.gz rails-a57f7b57976c74dd76c911f867b76197119546e6.tar.bz2 rails-a57f7b57976c74dd76c911f867b76197119546e6.zip |
ActiveJob -> Active Job [ci skip]
See http://guides.rubyonrails.org/api_documentation_guidelines.html#wording
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/active_job_basics.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/active_job_basics.md b/guides/source/active_job_basics.md index a8e1f22b4d..58e828d1b5 100644 --- a/guides/source/active_job_basics.md +++ b/guides/source/active_job_basics.md @@ -203,7 +203,7 @@ is integrated with Action Mailer so you can easily send emails asynchronously: # If you want to send the email now use #deliver_now UserMailer.welcome(@user).deliver_now -# If you want to send the email through ActiveJob use #deliver_later +# If you want to send the email through Active Job use #deliver_later UserMailer.welcome(@user).deliver_later ``` |