diff options
author | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2014-08-23 22:07:49 +0900 |
---|---|---|
committer | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2014-08-23 22:07:49 +0900 |
commit | ec1c608b5d16b4ebe81169fb64d5dce56dc3a096 (patch) | |
tree | fbad7a0e0ed8486fbc4c1497d60e113d89982e87 /guides | |
parent | b918bf9a19354331ecadf18befa9f8dbb906c9db (diff) | |
download | rails-ec1c608b5d16b4ebe81169fb64d5dce56dc3a096.tar.gz rails-ec1c608b5d16b4ebe81169fb64d5dce56dc3a096.tar.bz2 rails-ec1c608b5d16b4ebe81169fb64d5dce56dc3a096.zip |
Fix example code in Active Job guide [ci skip]
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/active_job_basics.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/active_job_basics.md b/guides/source/active_job_basics.md index 80e44f19f7..e2f13d557a 100644 --- a/guides/source/active_job_basics.md +++ b/guides/source/active_job_basics.md @@ -67,7 +67,7 @@ Here's what a job looks like: class GuestsCleanupJob < ActiveJob::Base queue_as :default - def perform + def perform(*args) # Do something later end end |