diff options
author | Guido van Rossum <guido@python.org> | 2014-03-30 04:14:04 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2014-03-30 04:14:04 (GMT) |
commit | 589872cbdfd9103d183e0c83fff549c89b23f8a9 (patch) | |
tree | 72303f2ed6a4957991058fe56795eced2a1402c5 /Doc | |
parent | f269cc6b145b94436fd34deb3550c36dfb3f11b0 (diff) | |
download | cpython-589872cbdfd9103d183e0c83fff549c89b23f8a9.zip cpython-589872cbdfd9103d183e0c83fff549c89b23f8a9.tar.gz cpython-589872cbdfd9103d183e0c83fff549c89b23f8a9.tar.bz2 |
Fix doc typo.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/asyncio-protocol.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/asyncio-protocol.rst b/Doc/library/asyncio-protocol.rst index c352403..58c94ae 100644 --- a/Doc/library/asyncio-protocol.rst +++ b/Doc/library/asyncio-protocol.rst @@ -9,7 +9,7 @@ Transports and protocols (low-level API) Transports ========== -Transports are classed provided by :mod:`asyncio` in order to abstract +Transports are classes provided by :mod:`asyncio` in order to abstract various kinds of communication channels. You generally won't instantiate a transport yourself; instead, you will call a :class:`BaseEventLoop` method which will create the transport and try to initiate the underlying |