Skip to content

Commit 2375858

Browse files
committed
doc:add changes
1 parent a257e41 commit 2375858

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

docs/index.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,17 +29,16 @@ executed.
2929
A process listening to one or more queues for **jobs to be scheduled for execution**, and schedule them
3030
to be executed by a worker.
3131

32-
This is a sub-process of worker.
32+
This is a subprocess of worker.
3333

3434
### Queued Job Execution
3535

36-
Once a worker listening to the queue becomes available,
37-
the job will be executed
36+
Once a worker listening to the queue becomes available, the job will be executed
3837

3938
### Scheduled Task Execution
4039

41-
A scheduler checking the queue periodically will check
42-
whether the time the job should be executed has come, and if so, it will queue it.
40+
A scheduler checking the queue periodically will check whether the time the job should be executed has come, and if so,
41+
it will queue it.
4342

4443
* A job is considered scheduled if it is queued to be executed, or scheduled to be executed.
4544
* If there is no scheduler, the job will not be queued to run.
@@ -49,7 +48,7 @@ whether the time the job should be executed has come, and if so, it will queue i
4948
django models storing information about jobs. So it is possible to schedule using
5049
django-admin and track their status.
5150

52-
There are 3 types of scheduled task.
51+
There are three types of ScheduledTask.
5352

5453
* `Scheduled Task` - Run a job once, on a specific time (can be immediate).
5554
* `Repeatable Task` - Run a job multiple times (limited number of times or infinite times) based on an interval

0 commit comments

Comments
 (0)