diff options
author | Graeme Boy <graemeboy@gmail.com> | 2016-04-23 17:17:20 -0700 |
---|---|---|
committer | Graeme Boy <graemeboy@gmail.com> | 2016-04-23 17:23:19 -0700 |
commit | 6e27481dc73e7db6a5c6cb24e91946353b0aed1c (patch) | |
tree | 21011e1b0931e97fd0cf51c9ab2b5bd2df208ba8 /activejob | |
parent | 17668cf5284e8d1682b9c8e9318b452519bb7e42 (diff) | |
download | rails-6e27481dc73e7db6a5c6cb24e91946353b0aed1c.tar.gz rails-6e27481dc73e7db6a5c6cb24e91946353b0aed1c.tar.bz2 rails-6e27481dc73e7db6a5c6cb24e91946353b0aed1c.zip |
Fix typo in ActiveJob #retry_job doc
Diffstat (limited to 'activejob')
-rw-r--r-- | activejob/lib/active_job/enqueuing.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activejob/lib/active_job/enqueuing.rb b/activejob/lib/active_job/enqueuing.rb index 22154457fd..9dc3c0fa57 100644 --- a/activejob/lib/active_job/enqueuing.rb +++ b/activejob/lib/active_job/enqueuing.rb @@ -36,7 +36,7 @@ module ActiveJob # # ==== Examples # - # class SiteScrapperJob < ActiveJob::Base + # class SiteScraperJob < ActiveJob::Base # rescue_from(ErrorLoadingSite) do # retry_job queue: :low_priority # end |