diff options
author | Zachary Scott <e@zzak.io> | 2014-11-03 19:31:31 -0800 |
---|---|---|
committer | Zachary Scott <e@zzak.io> | 2014-11-03 19:31:31 -0800 |
commit | 77c0256409d48c23b0b208f95191973e8c1dfd7f (patch) | |
tree | f4fe3f5f7adeb1340b57cfae37e2417d3da26fa6 /activejob/lib | |
parent | b049d792bdd72f485ffe279ba3f518bf4b3e94a7 (diff) | |
download | rails-77c0256409d48c23b0b208f95191973e8c1dfd7f.tar.gz rails-77c0256409d48c23b0b208f95191973e8c1dfd7f.tar.bz2 rails-77c0256409d48c23b0b208f95191973e8c1dfd7f.zip |
Correct fixed-width doc syntax, thanks to @sikachu for pointing it out!
From dc5854f and c07c0b2 [ci skip]
Diffstat (limited to 'activejob/lib')
-rw-r--r-- | activejob/lib/active_job/callbacks.rb | 2 | ||||
-rw-r--r-- | activejob/lib/active_job/enqueuing.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/activejob/lib/active_job/callbacks.rb b/activejob/lib/active_job/callbacks.rb index 46a402b017..c4ceb484cc 100644 --- a/activejob/lib/active_job/callbacks.rb +++ b/activejob/lib/active_job/callbacks.rb @@ -23,7 +23,7 @@ module ActiveJob end # These methods will be included into any Active Job object, adding - # callbacks for `perform` and `enqueue` methods. + # callbacks for +perform+ and +enqueue+ methods. module ClassMethods # Defines a callback that will get called right before the # job's perform method is executed. diff --git a/activejob/lib/active_job/enqueuing.rb b/activejob/lib/active_job/enqueuing.rb index b87803864c..430c17e1bf 100644 --- a/activejob/lib/active_job/enqueuing.rb +++ b/activejob/lib/active_job/enqueuing.rb @@ -4,7 +4,7 @@ module ActiveJob module Enqueuing extend ActiveSupport::Concern - # Includes the `perform_later` method for job initialization. + # Includes the +perform_later+ method for job initialization. module ClassMethods # Push a job onto the queue. The arguments must be legal JSON types # (string, int, float, nil, true, false, hash or array) or |