We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93aad21 commit 0a4181bCopy full SHA for 0a4181b
docs-src/scheduling.md
@@ -38,7 +38,7 @@ namespace MyCommandPlugin
38
{
39
var myCommand = new MyCommand();
40
41
- // Generate a schedulable job with the command
+ // Generate a schedulable job with the command.
42
var job = myCommand.MakeTriggerBuilder().Build();
43
44
// Generate a trigger for the job, and set its schedule to every 10 seconds.
@@ -47,7 +47,7 @@ namespace MyCommandPlugin
47
.WithSimpleSchedule(x => x.WithIntervalInSeconds(10).RepeatForever())
48
.Build();
49
50
- // Register the job and trigger with the scheduler
+ // Register the job and trigger with the scheduler.
51
scheduler.ScheduleJob(job, trigger);
52
}
53
0 commit comments