aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/README.md
diff options
context:
space:
mode:
authorjacobherrington <jacobherringtondeveloper@gmail.com>2018-11-18 22:36:44 -0600
committerjacobherrington <jacobherringtondeveloper@gmail.com>2018-11-18 22:36:44 -0600
commit308d637550f4b1ec7550df3fa6ab8db9fe7c81e8 (patch)
tree5ef760f96528c878e28f9fd9052a3c80db46ff76 /activejob/README.md
parent218e50ce59c3abfa5ffdfac253cdeb2f74602da0 (diff)
downloadrails-308d637550f4b1ec7550df3fa6ab8db9fe7c81e8.tar.gz
rails-308d637550f4b1ec7550df3fa6ab8db9fe7c81e8.tar.bz2
rails-308d637550f4b1ec7550df3fa6ab8db9fe7c81e8.zip
Change queueing to queuing in docs and comments [skip ci]
My spellchecker flagged this as an incorrect spelling, upon further research it appears to be a point of contention in English. Either way might work. After further examination queuing is much more common in the Rails codebase so making this change will serve to standardize the spelling.
Diffstat (limited to 'activejob/README.md')
-rw-r--r--activejob/README.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/activejob/README.md b/activejob/README.md
index d49fcfe3c2..a2a5289ab7 100644
--- a/activejob/README.md
+++ b/activejob/README.md
@@ -1,7 +1,7 @@
# Active Job -- Make work happen later
Active Job is a framework for declaring jobs and making them run on a variety
-of queueing backends. These jobs can be everything from regularly scheduled
+of queuing backends. These jobs can be everything from regularly scheduled
clean-ups, to billing charges, to mailings. Anything that can be chopped up into
small units of work and run in parallel, really.
@@ -20,7 +20,7 @@ switch between them without having to rewrite your jobs.
## Usage
-To learn how to use your preferred queueing backend see its adapter
+To learn how to use your preferred queuing backend see its adapter
documentation at
[ActiveJob::QueueAdapters](http://api.rubyonrails.org/classes/ActiveJob/QueueAdapters.html).
@@ -39,7 +39,7 @@ end
Enqueue a job like so:
```ruby
-MyJob.perform_later record # Enqueue a job to be performed as soon as the queueing system is free.
+MyJob.perform_later record # Enqueue a job to be performed as soon as the queuing system is free.
```
```ruby
@@ -82,9 +82,9 @@ This works with any class that mixes in GlobalID::Identification, which
by default has been mixed into Active Record classes.
-## Supported queueing systems
+## Supported queuing systems
-Active Job has built-in adapters for multiple queueing backends (Sidekiq,
+Active Job has built-in adapters for multiple queuing 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).