Tiny follow-up to #16999 [ci skip]

* Fix a typo
* Remove references to Rails version
* Remove an extra whitespace
This commit is contained in:
Robin Dupret 2014-09-27 16:22:15 +02:00
parent d7a058f785
commit d63005447b
3 changed files with 4 additions and 4 deletions

View File

@ -10,7 +10,7 @@ module ActiveJob
# The advantages of Qu are: Multiple backends (redis, mongo), jobs are
# requeued when worker is killed, resque-like API.
#
# Read more about Que {here}[https://github.com/bkeepers/qu].
# Read more about Qu {here}[https://github.com/bkeepers/qu].
#
# To use Qu set the queue_adapter config to +:qu+.
#

View File

@ -6,8 +6,8 @@ module ActiveJob
#
# Simple, efficient background processing for Ruby. Sidekiq uses threads to
# handle many jobs at the same time in the same process. It does not
# require Rails but will integrate tightly with Rails 3/4 to make
# background processing dead simple.
# require Rails but will integrate tightly with it to make background
# processing dead simple.
#
# Read more about Sidekiq {here}[http://sidekiq.org].
#

View File

@ -99,7 +99,7 @@ If no adapter is set, the job is immediately executed.
### Backends
Active Job has built-in adapters for multiple queueing backends (Sidekiq,
Active Job has built-in adapters for multiple queueing backends (Sidekiq,
Resque, Delayed Job and others). To get an up-to-date list of the adapters
see the API Documentation for [ActiveJob::QueueAdapters](http://api.rubyonrails.org/classes/ActiveJob/QueueAdapters.html).