summaryrefslogtreecommitdiff
path: root/Doc/library/asyncio-protocol.rst
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-08-20 08:03:06 +0000
committerMartin Panter <vadmium+py@gmail.com>2016-08-20 08:03:06 +0000
commitd210a70dd92aa3beca9d24a7a40d25681cf48fbd (patch)
treee3ce916213b371329aa7dbd9c91f1ec8504d9485 /Doc/library/asyncio-protocol.rst
parentf43bc98c483a999c34dc1a91f0248e228cf88047 (diff)
downloadcpython-git-d210a70dd92aa3beca9d24a7a40d25681cf48fbd.tar.gz
Minor spelling fixes
Diffstat (limited to 'Doc/library/asyncio-protocol.rst')
-rw-r--r--Doc/library/asyncio-protocol.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/asyncio-protocol.rst b/Doc/library/asyncio-protocol.rst
index bd6ddb6782..a38d1e092f 100644
--- a/Doc/library/asyncio-protocol.rst
+++ b/Doc/library/asyncio-protocol.rst
@@ -11,7 +11,7 @@ Transports
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:`AbstractEventLoop` method
+a transport yourself; instead, you will call an :class:`AbstractEventLoop` method
which will create the transport and try to initiate the underlying
communication channel, calling you back when it succeeds.