From 6ecd33e4e1af17a716e0efbc0f64b8f6a69eb6a7 Mon Sep 17 00:00:00 2001 From: Vipul A M Date: Tue, 21 Oct 2014 00:54:03 +0530 Subject: - Changed description for AJ enqueuing methods to provide a sane description. [ci skip] --- activejob/lib/active_job/base.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'activejob') diff --git a/activejob/lib/active_job/base.rb b/activejob/lib/active_job/base.rb index 913e221d89..0c4a29090e 100644 --- a/activejob/lib/active_job/base.rb +++ b/activejob/lib/active_job/base.rb @@ -34,17 +34,17 @@ module ActiveJob #:nodoc: # Records that are passed in are serialized/deserialized using Global # Id. More information can be found in Arguments. # - # To queue a job to be processed asynchronously immediately: + # To enqueue a job to be performed as soon the queueing system is free: # # ProcessPhotoJob.perform_later(photo) # - # To queue a job to be processed at some point in the future: + # To enqueue a job to be processed at some point in the future: # # ProcessPhotoJob.set(wait_until: Date.tomorrow.noon).perform_later(photo) # # More information can be found in ActiveJob::Core::ClassMethods#set # - # A job can also be processed synchronously: + # A job can also be processed immediately without sending to the queue: # # ProcessPhotoJob.perform_now(photo) # -- cgit v1.2.3