1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

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 # The advantages of Qu are: Multiple backends (redis, mongo), jobs are
# requeued when worker is killed, resque-like API. # 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+. # 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 # Simple, efficient background processing for Ruby. Sidekiq uses threads to
# handle many jobs at the same time in the same process. It does not # 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 # require Rails but will integrate tightly with it to make background
# background processing dead simple. # processing dead simple.
# #
# Read more about Sidekiq {here}[http://sidekiq.org]. # 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 ### 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 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). see the API Documentation for [ActiveJob::QueueAdapters](http://api.rubyonrails.org/classes/ActiveJob/QueueAdapters.html).