Skip to content

Commit 11bdc5c

Browse files
Chuan MaChuan Ma
authored andcommitted
update the text as well for the first example
1 parent 486b53e commit 11bdc5c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ point in the future. The classic example is sending an email:
2727
require 'Resque/Resque.php';
2828
require 'ResqueScheduler/ResqueScheduler.php';
2929

30-
$in = 3600; // trigger the job in 1 hour.
30+
$in = 3600;
3131
$args = array('id' => $user->id);
3232
ResqueScheduler::enqueueIn($in, 'email', 'SendFollowUpEmail', $args);
3333

34-
The above will store the job for 5 days in the delayed queue, and then pull the
34+
The above will store the job for 1 hour in the delayed queue, and then pull the
3535
job off and submit it to the `email` queue in Resque for processing as soon as
3636
a worker is available.
3737

0 commit comments

Comments
 (0)