]> granicus.if.org Git - python/commitdiff
Fix incorrect grammar in sched documentation.
authorSerhiy Storchaka <storchaka@gmail.com>
Wed, 2 Jan 2013 10:31:26 +0000 (12:31 +0200)
committerSerhiy Storchaka <storchaka@gmail.com>
Wed, 2 Jan 2013 10:31:26 +0000 (12:31 +0200)
Doc/library/sched.rst

index e73ba4071818626d26438150ddc7b5eeca567c3f..cb5fe4f7d37e675b97165ef35b08a111c07f51b3 100644 (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`).