aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/lib/active_job/exceptions.rb
diff options
context:
space:
mode:
authoryuuji.yaginuma <yuuji.yaginuma@gmail.com>2016-10-14 09:15:51 +0900
committeryuuji.yaginuma <yuuji.yaginuma@gmail.com>2016-10-14 09:15:51 +0900
commit77bdbb5f41307f5566f41964479369521a616223 (patch)
treef3b4649bf324adf6a8203de7ca08130abfc63d58 /activejob/lib/active_job/exceptions.rb
parente10e3c7da215ef848db7592068993f14aac00fa6 (diff)
downloadrails-77bdbb5f41307f5566f41964479369521a616223.tar.gz
rails-77bdbb5f41307f5566f41964479369521a616223.tar.bz2
rails-77bdbb5f41307f5566f41964479369521a616223.zip
add missing closing tag [ci skip]
Diffstat (limited to 'activejob/lib/active_job/exceptions.rb')
-rw-r--r--activejob/lib/active_job/exceptions.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activejob/lib/active_job/exceptions.rb b/activejob/lib/active_job/exceptions.rb
index d236f03d53..c759068f9e 100644
--- a/activejob/lib/active_job/exceptions.rb
+++ b/activejob/lib/active_job/exceptions.rb
@@ -17,7 +17,7 @@ module ActiveJob
# ==== Options
# * <tt>:wait</tt> - Re-enqueues the job with a delay specified either in seconds (default: 3 seconds),
# as a computing proc that the number of executions so far as an argument, or as a symbol reference of
- # <tt>:exponentially_longer<>, which applies the wait algorithm of <tt>(executions ** 4) + 2</tt>
+ # <tt>:exponentially_longer</tt>, which applies the wait algorithm of <tt>(executions ** 4) + 2</tt>
# (first wait 3s, then 18s, then 83s, etc)
# * <tt>:attempts</tt> - Re-enqueues the job the specified number of times (default: 5 attempts)
# * <tt>:queue</tt> - Re-enqueues the job on a different queue