diff options
author | Yves Senn <yves.senn@gmail.com> | 2014-10-20 08:59:36 +0200 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2014-10-20 09:00:16 +0200 |
commit | e62554607c86a33e5c56107d98a366531ff5c7c9 (patch) | |
tree | 2e820a0b085278b5a71fda66c80973d1690228a6 /activejob/lib | |
parent | d207adb24ca6d2448c2a8fb409bf62576c8044e0 (diff) | |
download | rails-e62554607c86a33e5c56107d98a366531ff5c7c9.tar.gz rails-e62554607c86a33e5c56107d98a366531ff5c7c9.tar.bz2 rails-e62554607c86a33e5c56107d98a366531ff5c7c9.zip |
docs, It's "Active Job" not "Active job". [ci skip]
Diffstat (limited to 'activejob/lib')
-rw-r--r-- | activejob/lib/active_job/base.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activejob/lib/active_job/base.rb b/activejob/lib/active_job/base.rb index 8f4b37222a..f926d8fad5 100644 --- a/activejob/lib/active_job/base.rb +++ b/activejob/lib/active_job/base.rb @@ -9,14 +9,14 @@ require 'active_job/logging' module ActiveJob #:nodoc: # = Active Job # - # Active job objects can be configured to work with different backend + # Active Job objects can be configured to work with different backend # queuing frameworks. To specify a queue adapter to use: # # ActiveJob::Base.queue_adapter = :inline # # A list of supported adapters can be found in QueueAdapters. # - # Active job objects can be defined by creating a class that inherits + # Active Job objects can be defined by creating a class that inherits # from the ActiveJob::Base class. The only necessary method to # implement is the "perform" method. # |