diff options
author | Yoshiyuki Hirano <yhirano@me.com> | 2017-08-30 05:07:49 +0900 |
---|---|---|
committer | Yoshiyuki Hirano <yhirano@me.com> | 2017-08-30 05:08:36 +0900 |
commit | c7cd470bb34ef5afb6cb686eb770263b512bbfed (patch) | |
tree | 963250c9c882abac8805082c390a27b0267ddf7b /activejob | |
parent | 9a66a22102db76896f400939165ec92280e092e7 (diff) | |
download | rails-c7cd470bb34ef5afb6cb686eb770263b512bbfed.tar.gz rails-c7cd470bb34ef5afb6cb686eb770263b512bbfed.tar.bz2 rails-c7cd470bb34ef5afb6cb686eb770263b512bbfed.zip |
Update activejob doc [ci skip]
Diffstat (limited to 'activejob')
-rw-r--r-- | activejob/lib/active_job/enqueuing.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activejob/lib/active_job/enqueuing.rb b/activejob/lib/active_job/enqueuing.rb index ad32d3065b..c0d016853c 100644 --- a/activejob/lib/active_job/enqueuing.rb +++ b/activejob/lib/active_job/enqueuing.rb @@ -10,7 +10,7 @@ module ActiveJob # 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 + # (+string+, +int+, +float+, +nil+, +true+, +false+, +hash+ or +array+) or # GlobalID::Identification instances. Arbitrary Ruby objects # are not supported. # |