diff options
author | Eli Bendersky <eliben@gmail.com> | 2014-02-09 14:07:47 (GMT) |
---|---|---|
committer | Eli Bendersky <eliben@gmail.com> | 2014-02-09 14:07:47 (GMT) |
commit | b73c83318d02036281816c51e17a05c568f3db4e (patch) | |
tree | aa1920b5ea0463de27afb8b0d7c26c1dd41d3655 /Doc/library/asyncio.rst | |
parent | 8b402629aeb9922b6e80204b913f4022da1ce730 (diff) | |
download | cpython-b73c83318d02036281816c51e17a05c568f3db4e.zip cpython-b73c83318d02036281816c51e17a05c568f3db4e.tar.gz cpython-b73c83318d02036281816c51e17a05c568f3db4e.tar.bz2 |
Various formatting & grammar fixes in asyncio* docs.
Diffstat (limited to 'Doc/library/asyncio.rst')
-rw-r--r-- | Doc/library/asyncio.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/asyncio.rst b/Doc/library/asyncio.rst index e6ea89b..23731b1 100644 --- a/Doc/library/asyncio.rst +++ b/Doc/library/asyncio.rst @@ -30,7 +30,7 @@ Here is a more detailed list of the package contents: * coroutines and tasks based on ``yield from`` (:PEP:`380`), to help write concurrent code in a sequential fashion; -* cancellation support for Futures and coroutines; +* cancellation support for :class:`Future`\s and coroutines; * :ref:`synchronization primitives <asyncio-sync>` for use between coroutines in a single thread, mimicking those in the :mod:`threading` module; |