aboutsummaryrefslogtreecommitdiffstats
path: root/activejob
diff options
context:
space:
mode:
authorCristian Bica <cristian.bica@gmail.com>2014-12-31 08:01:59 +0200
committerCristian Bica <cristian.bica@gmail.com>2014-12-31 08:01:59 +0200
commitca605fa47ac9ca00452c4e31ec3657cb1edec8d0 (patch)
treee9d6c6475aa7bbc46defc4411a9c1a1094421e5c /activejob
parent070f556c3a793388307bbcabc4ee4e51741a5a66 (diff)
parent2ecee1034d0833327def8dd364fa75441d492a54 (diff)
downloadrails-ca605fa47ac9ca00452c4e31ec3657cb1edec8d0.tar.gz
rails-ca605fa47ac9ca00452c4e31ec3657cb1edec8d0.tar.bz2
rails-ca605fa47ac9ca00452c4e31ec3657cb1edec8d0.zip
Merge pull request #18270 from prathamesh-sonpatki/activejobs-is-not-actionjob
ActiveJob is not ActionJob [ci skip] :smile:
Diffstat (limited to 'activejob')
-rw-r--r--activejob/lib/active_job/queue_adapter.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activejob/lib/active_job/queue_adapter.rb b/activejob/lib/active_job/queue_adapter.rb
index d48d56e1da..d610d30e01 100644
--- a/activejob/lib/active_job/queue_adapter.rb
+++ b/activejob/lib/active_job/queue_adapter.rb
@@ -2,7 +2,7 @@ require 'active_job/queue_adapters/inline_adapter'
require 'active_support/core_ext/string/inflections'
module ActiveJob
- # The <tt>ActionJob::QueueAdapter</tt> module is used to load the
+ # The <tt>ActiveJob::QueueAdapter</tt> module is used to load the
# correct adapter. The default queue adapter is the :inline queue.
module QueueAdapter #:nodoc:
extend ActiveSupport::Concern