diff options
author | Robin Dupret <robin.dupret@gmail.com> | 2014-09-27 16:22:15 +0200 |
---|---|---|
committer | Robin Dupret <robin.dupret@gmail.com> | 2014-09-27 16:22:15 +0200 |
commit | d63005447b143e3308c9e8e430216cd7bb144c6c (patch) | |
tree | d0b832f09cf75a136e1e19af64a2119c98029cf5 /activejob/lib/active_job | |
parent | d7a058f785224a3643244686fae3a31e408f0860 (diff) | |
download | rails-d63005447b143e3308c9e8e430216cd7bb144c6c.tar.gz rails-d63005447b143e3308c9e8e430216cd7bb144c6c.tar.bz2 rails-d63005447b143e3308c9e8e430216cd7bb144c6c.zip |
Tiny follow-up to #16999 [ci skip]
* Fix a typo
* Remove references to Rails version
* Remove an extra whitespace
Diffstat (limited to 'activejob/lib/active_job')
-rw-r--r-- | activejob/lib/active_job/queue_adapters/qu_adapter.rb | 2 | ||||
-rw-r--r-- | activejob/lib/active_job/queue_adapters/sidekiq_adapter.rb | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/activejob/lib/active_job/queue_adapters/qu_adapter.rb b/activejob/lib/active_job/queue_adapters/qu_adapter.rb index 79c79ee372..30aa5a4670 100644 --- a/activejob/lib/active_job/queue_adapters/qu_adapter.rb +++ b/activejob/lib/active_job/queue_adapters/qu_adapter.rb @@ -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+. # diff --git a/activejob/lib/active_job/queue_adapters/sidekiq_adapter.rb b/activejob/lib/active_job/queue_adapters/sidekiq_adapter.rb index 74655cf0ca..7d80a6fd7a 100644 --- a/activejob/lib/active_job/queue_adapters/sidekiq_adapter.rb +++ b/activejob/lib/active_job/queue_adapters/sidekiq_adapter.rb @@ -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]. # |