diff options
author | jacobherrington <jacobherringtondeveloper@gmail.com> | 2018-11-18 22:36:44 -0600 |
---|---|---|
committer | jacobherrington <jacobherringtondeveloper@gmail.com> | 2018-11-18 22:36:44 -0600 |
commit | 308d637550f4b1ec7550df3fa6ab8db9fe7c81e8 (patch) | |
tree | 5ef760f96528c878e28f9fd9052a3c80db46ff76 /guides/source | |
parent | 218e50ce59c3abfa5ffdfac253cdeb2f74602da0 (diff) | |
download | rails-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 'guides/source')
-rw-r--r-- | guides/source/configuring.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md index 706964090e..de6766e12e 100644 --- a/guides/source/configuring.md +++ b/guides/source/configuring.md @@ -731,7 +731,7 @@ There are a few configuration options available in Active Support: `config.active_job` provides the following configuration options: -* `config.active_job.queue_adapter` sets the adapter for the queueing backend. The default adapter is `:async`. For an up-to-date list of built-in adapters see the [ActiveJob::QueueAdapters API documentation](http://api.rubyonrails.org/classes/ActiveJob/QueueAdapters.html). +* `config.active_job.queue_adapter` sets the adapter for the queuing backend. The default adapter is `:async`. For an up-to-date list of built-in adapters see the [ActiveJob::QueueAdapters API documentation](http://api.rubyonrails.org/classes/ActiveJob/QueueAdapters.html). ```ruby # Be sure to have the adapter's gem in your Gemfile |