mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Fix some typos in ActiveJob
[ci skip]
This commit is contained in:
parent
05ed448ad2
commit
76ccbc2599
2 changed files with 2 additions and 2 deletions
|
@ -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.
|
||||
#
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue