aboutsummaryrefslogtreecommitdiffstats
path: root/activejob
diff options
context:
space:
mode:
authorYoshiyuki Hirano <yhirano@me.com>2017-08-30 05:07:49 +0900
committerYoshiyuki Hirano <yhirano@me.com>2017-08-30 05:08:36 +0900
commitc7cd470bb34ef5afb6cb686eb770263b512bbfed (patch)
tree963250c9c882abac8805082c390a27b0267ddf7b /activejob
parent9a66a22102db76896f400939165ec92280e092e7 (diff)
downloadrails-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.rb2
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.
#