aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobin Dupret <robin.dupret@gmail.com>2014-09-27 16:22:15 +0200
committerRobin Dupret <robin.dupret@gmail.com>2014-09-27 16:22:15 +0200
commitd63005447b143e3308c9e8e430216cd7bb144c6c (patch)
treed0b832f09cf75a136e1e19af64a2119c98029cf5
parentd7a058f785224a3643244686fae3a31e408f0860 (diff)
downloadrails-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
-rw-r--r--activejob/lib/active_job/queue_adapters/qu_adapter.rb2
-rw-r--r--activejob/lib/active_job/queue_adapters/sidekiq_adapter.rb4
-rw-r--r--guides/source/active_job_basics.md2
3 files changed, 4 insertions, 4 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].
#
diff --git a/guides/source/active_job_basics.md b/guides/source/active_job_basics.md
index 2fd242cb2c..9c34418fab 100644
--- a/guides/source/active_job_basics.md
+++ b/guides/source/active_job_basics.md
@@ -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).