Skip to content

Commit 0a4181b

Browse files
committed
Update docs
1 parent 93aad21 commit 0a4181b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs-src/scheduling.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ namespace MyCommandPlugin
3838
{
3939
var myCommand = new MyCommand();
4040

41-
// Generate a schedulable job with the command
41+
// Generate a schedulable job with the command.
4242
var job = myCommand.MakeTriggerBuilder().Build();
4343

4444
// Generate a trigger for the job, and set its schedule to every 10 seconds.
@@ -47,7 +47,7 @@ namespace MyCommandPlugin
4747
.WithSimpleSchedule(x => x.WithIntervalInSeconds(10).RepeatForever())
4848
.Build();
4949

50-
// Register the job and trigger with the scheduler
50+
// Register the job and trigger with the scheduler.
5151
scheduler.ScheduleJob(job, trigger);
5252
}
5353
}

0 commit comments

Comments
 (0)