From 76ccbc2599aab089fa39bfe2035aa2750539305f Mon Sep 17 00:00:00 2001 From: Prathamesh Sonpatki Date: Sat, 27 Sep 2014 16:51:29 +0530 Subject: [PATCH] Fix some typos in ActiveJob [ci skip] --- activejob/lib/active_job/queue_adapters/qu_adapter.rb | 2 +- .../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 QC::Queue object to schedule jobs on. # - # If you have a custom QC::Queue subclass you'll need to suclass + # If you have a custom QC::Queue subclass you'll need to subclass # ActiveJob::QueueAdapters::QueueClassicAdapter and override the # build_queue method. def build_queue(queue_name)