diff options
author | Abdelkader Boudih <terminale@gmail.com> | 2014-09-27 12:25:24 +0100 |
---|---|---|
committer | Abdelkader Boudih <terminale@gmail.com> | 2014-09-27 12:25:24 +0100 |
commit | 6a5ee60e3b17be52d45d1a6bea39ba6a4f1e4271 (patch) | |
tree | 5beb3700b78a9414667e36b197f3b87a4e610c21 /activejob/lib | |
parent | 05ed448ad2f4a2d6910360b5c459a85e13bea970 (diff) | |
parent | 76ccbc2599aab089fa39bfe2035aa2750539305f (diff) | |
download | rails-6a5ee60e3b17be52d45d1a6bea39ba6a4f1e4271.tar.gz rails-6a5ee60e3b17be52d45d1a6bea39ba6a4f1e4271.tar.bz2 rails-6a5ee60e3b17be52d45d1a6bea39ba6a4f1e4271.zip |
Merge pull request #17081 from prathamesh-sonpatki/fix-aj-typos
Fix some typos in ActiveJob
Diffstat (limited to 'activejob/lib')
-rw-r--r-- | activejob/lib/active_job/queue_adapters/qu_adapter.rb | 2 | ||||
-rw-r--r-- | activejob/lib/active_job/queue_adapters/queue_classic_adapter.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/activejob/lib/active_job/queue_adapters/qu_adapter.rb b/activejob/lib/active_job/queue_adapters/qu_adapter.rb index 7cdefefc02..79c79ee372 100644 --- a/activejob/lib/active_job/queue_adapters/qu_adapter.rb +++ b/activejob/lib/active_job/queue_adapters/qu_adapter.rb @@ -6,7 +6,7 @@ module ActiveJob # # Qu is a Ruby library for queuing and processing background jobs. It is # heavily inspired by delayed_job and Resque. Qu was created to overcome - # some shortcomings in the existing queuing libraries that we experienced. + # some shortcomings in the existing queuing libraries. # The advantages of Qu are: Multiple backends (redis, mongo), jobs are # requeued when worker is killed, resque-like API. # diff --git a/activejob/lib/active_job/queue_adapters/queue_classic_adapter.rb b/activejob/lib/active_job/queue_adapters/queue_classic_adapter.rb index bde20e037e..f160932578 100644 --- a/activejob/lib/active_job/queue_adapters/queue_classic_adapter.rb +++ b/activejob/lib/active_job/queue_adapters/queue_classic_adapter.rb @@ -34,7 +34,7 @@ module ActiveJob # Builds a <tt>QC::Queue</tt> object to schedule jobs on. # - # If you have a custom <tt>QC::Queue</tt> subclass you'll need to suclass + # If you have a custom <tt>QC::Queue</tt> subclass you'll need to subclass # <tt>ActiveJob::QueueAdapters::QueueClassicAdapter</tt> and override the # <tt>build_queue</tt> method. def build_queue(queue_name) |