diff options
author | Brian Curtin <brian@python.org> | 2014-02-09 00:36:14 (GMT) |
---|---|---|
committer | Brian Curtin <brian@python.org> | 2014-02-09 00:36:14 (GMT) |
commit | a1afeec9aa4039f5b03a6513b63847bdfecb4c4d (patch) | |
tree | a4da92b615ece3be63eb50eb0f4e36aac6e12f3c /Doc/library/asyncio.rst | |
parent | 87bf2772be6138044c79011ad1a4daf91dc08a7f (diff) | |
download | cpython-a1afeec9aa4039f5b03a6513b63847bdfecb4c4d.zip cpython-a1afeec9aa4039f5b03a6513b63847bdfecb4c4d.tar.gz cpython-a1afeec9aa4039f5b03a6513b63847bdfecb4c4d.tar.bz2 |
Spelling corrections. Submitted to python-dev by python@mrabarnett.plus.com
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 542f476..e6ea89b 100644 --- a/Doc/library/asyncio.rst +++ b/Doc/library/asyncio.rst @@ -24,7 +24,7 @@ Here is a more detailed list of the package contents: * concrete support for TCP, UDP, SSL, subprocess pipes, delayed calls, and others (some may be system-dependent); -* a :class:`Future` class that mimicks the one in the :mod:`concurrent.futures` +* a :class:`Future` class that mimics the one in the :mod:`concurrent.futures` module, but adapted for use with the event loop; * coroutines and tasks based on ``yield from`` (:PEP:`380`), to help write |