]> granicus.if.org Git - python/commitdiff
Asyncio doc fixes: spelling, grammar, duplication.
authorTerry Jan Reedy <tjreedy@udel.edu>
Thu, 24 Jul 2014 06:59:02 +0000 (02:59 -0400)
committerTerry Jan Reedy <tjreedy@udel.edu>
Thu, 24 Jul 2014 06:59:02 +0000 (02:59 -0400)
Doc/library/asyncio-eventloop.rst
Doc/library/asyncio.rst

index 6fe5aa1b2018026f33090fc34f35500747e5bd1a..46af81fa6353305d12c2949f211a812a8cd638e7 100644 (file)
@@ -58,13 +58,11 @@ Run an event loop
 
 .. method:: BaseEventLoop.close()
 
-   Close the event loop. The loop should not be running.
+   Close the event loop. The loop must not be running.
 
    This clears the queues and shuts down the executor, but does not wait for
    the executor to finish.
 
-   The event loop must not be running.
-
    This is idempotent and irreversible. No other methods should be called after
    this one.
 
index 9857c932fdeb40db6cc04cd6796e3a105b0d2eaf..90a152bf9b6e9d081d2467430ea47e2095174dd2 100644 (file)
@@ -39,7 +39,7 @@ Here is a more detailed list of the package contents:
   you absolutely, positively have to use a library that makes blocking
   I/O calls.
 
-Table of content:
+Table of contents:
 
 .. toctree::
    :maxdepth: 3
@@ -55,6 +55,6 @@ Table of content:
 
 .. seealso::
 
-   The :mod:`asyncio` module was designed in the :PEP:`3156`. For a
+   The :mod:`asyncio` module was designed in :PEP:`3156`. For a
    motivational primer on transports and protocols, see :PEP:`3153`.