Fix incorrect grammar in sched documentation.

This commit is contained in:
Serhiy Storchaka 2013-01-02 12:31:26 +02:00
parent 89faf4fe23
commit 75b936ec7f
1 changed files with 2 additions and 4 deletions

View File

@ -70,10 +70,8 @@ Scheduler Objects
*priority*.
Executing the event means executing ``action(*argument, **kwargs)``.
Optional *argument* argument must be a sequence holding the parameters
for *action* if any used.
Optional *kwargs* argument must be a dictionary holding the keyword
parameters for *action* if any used.
*argument* is a sequence holding the positional arguments for *action*.
*kwargs* is a dictionary holding the keyword arguments for *action*.
Return value is an event which may be used for later cancellation of the event
(see :meth:`cancel`).