diff options
author | Gannon McGibbon <gannon.mcgibbon@gmail.com> | 2018-11-19 00:07:57 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-19 00:07:57 -0500 |
commit | 2201197961b3aa1e3fc8033760a559def8da77e8 (patch) | |
tree | 5ef760f96528c878e28f9fd9052a3c80db46ff76 /guides | |
parent | 218e50ce59c3abfa5ffdfac253cdeb2f74602da0 (diff) | |
parent | 308d637550f4b1ec7550df3fa6ab8db9fe7c81e8 (diff) | |
download | rails-2201197961b3aa1e3fc8033760a559def8da77e8.tar.gz rails-2201197961b3aa1e3fc8033760a559def8da77e8.tar.bz2 rails-2201197961b3aa1e3fc8033760a559def8da77e8.zip |
Merge pull request #34481 from jacobherrington/patch-1
Correct a spelling error
Diffstat (limited to 'guides')
-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 |