Improve Scheduler Objects documentation. (GH-4556) (GH-4557)

Mention that the lower the priority number, the higher priority it represents.
(cherry picked from commit 9d5ec808de)
This commit is contained in:
Miss Islington (bot) 2017-11-24 21:48:26 -08:00 committed by Mariatta
parent 3e60747025
commit db897b1961
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ Scheduler Objects
Schedule a new event. The *time* argument should be a numeric type compatible
with the return value of the *timefunc* function passed to the constructor.
Events scheduled for the same *time* will be executed in the order of their
*priority*.
*priority*. A lower number represents a higher priority.
Executing the event means executing ``action(*argument, **kwargs)``.
*argument* is a sequence holding the positional arguments for *action*.