diff options
author | Vipul A M <vipulnsward@gmail.com> | 2016-05-27 16:01:20 -0700 |
---|---|---|
committer | Vipul A M <vipulnsward@gmail.com> | 2016-05-27 16:01:20 -0700 |
commit | 685d8a088f9c475dc7dcec3dc704f615bd209ec1 (patch) | |
tree | 1afeddaa5a47df6797ae48ea9fb9222839b78564 /activejob | |
parent | 9b2a884522ad24091efbff6d82f3f6e299f55529 (diff) | |
parent | ad9882369ab7ab74b7eb6b13b9cc47db6ed6c168 (diff) | |
download | rails-685d8a088f9c475dc7dcec3dc704f615bd209ec1.tar.gz rails-685d8a088f9c475dc7dcec3dc704f615bd209ec1.tar.bz2 rails-685d8a088f9c475dc7dcec3dc704f615bd209ec1.zip |
Merge pull request #25172 from imtayadeway/activejob/after-enqueue-doc
[ci skip] Reword doc for around_enqueue callback
Diffstat (limited to 'activejob')
-rw-r--r-- | activejob/lib/active_job/callbacks.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activejob/lib/active_job/callbacks.rb b/activejob/lib/active_job/callbacks.rb index a6591c6a05..b206522a60 100644 --- a/activejob/lib/active_job/callbacks.rb +++ b/activejob/lib/active_job/callbacks.rb @@ -126,8 +126,8 @@ module ActiveJob set_callback(:enqueue, :after, *filters, &blk) end - # Defines a callback that will get called before and after the - # job is enqueued. + # Defines a callback that will get called around the enqueueing + # of the job. # # class VideoProcessJob < ActiveJob::Base # queue_as :default |