aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/lib/active_job/queue_adapters
diff options
context:
space:
mode:
authorAbhishek Jain <jainabhishek1610@gmail.com>2016-02-12 23:49:08 +0530
committerAbhishek Jain <jainabhishek1610@gmail.com>2016-02-12 23:49:08 +0530
commit9a2ca9cf69bb7850ac7d9fa4de6d2edda1de2403 (patch)
tree8bf5132c9b41bb1e90f886b116a979a1bc53ecbc /activejob/lib/active_job/queue_adapters
parentc63f58d0f19220df44f0ddc553030be58309809c (diff)
downloadrails-9a2ca9cf69bb7850ac7d9fa4de6d2edda1de2403.tar.gz
rails-9a2ca9cf69bb7850ac7d9fa4de6d2edda1de2403.tar.bz2
rails-9a2ca9cf69bb7850ac7d9fa4de6d2edda1de2403.zip
[ci skip] Fix enqueuing spelling to maintain consistency
Diffstat (limited to 'activejob/lib/active_job/queue_adapters')
-rw-r--r--activejob/lib/active_job/queue_adapters/async_adapter.rb2
-rw-r--r--activejob/lib/active_job/queue_adapters/inline_adapter.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/activejob/lib/active_job/queue_adapters/async_adapter.rb b/activejob/lib/active_job/queue_adapters/async_adapter.rb
index 3fc27f56e7..3d3c749883 100644
--- a/activejob/lib/active_job/queue_adapters/async_adapter.rb
+++ b/activejob/lib/active_job/queue_adapters/async_adapter.rb
@@ -4,7 +4,7 @@ module ActiveJob
module QueueAdapters
# == Active Job Async adapter
#
- # When enqueueing jobs with the Async adapter the job will be executed
+ # When enqueuing jobs with the Async adapter the job will be executed
# asynchronously using {AsyncJob}[http://api.rubyonrails.org/classes/ActiveJob/AsyncJob.html].
#
# To use +AsyncJob+ set the queue_adapter config to +:async+.
diff --git a/activejob/lib/active_job/queue_adapters/inline_adapter.rb b/activejob/lib/active_job/queue_adapters/inline_adapter.rb
index 8ad5f4de07..0496f8449e 100644
--- a/activejob/lib/active_job/queue_adapters/inline_adapter.rb
+++ b/activejob/lib/active_job/queue_adapters/inline_adapter.rb
@@ -2,7 +2,7 @@ module ActiveJob
module QueueAdapters
# == Active Job Inline adapter
#
- # When enqueueing jobs with the Inline adapter the job will be executed
+ # When enqueuing jobs with the Inline adapter the job will be executed
# immediately.
#
# To use the Inline set the queue_adapter config to +:inline+.