summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2016-01-20 05:14:43 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2016-01-20 05:14:43 (GMT)
commit4f49c1c38add5420c6f1a7e031e51fcd5847d638 (patch)
treeda9929174ddf0970213346f8a09857c5cfb0675c
parent33abe9a2104cbec9329a77b3e56993dcb554a09d (diff)
parent49c9edf3d9169a5e9c7c51826711c34435eaaf60 (diff)
downloadcpython-4f49c1c38add5420c6f1a7e031e51fcd5847d638.zip
cpython-4f49c1c38add5420c6f1a7e031e51fcd5847d638.tar.gz
cpython-4f49c1c38add5420c6f1a7e031e51fcd5847d638.tar.bz2
Issue #26157: Fix typos in asyncio-eventloop.rst
Initial patch by Carlo Beccarini.
-rw-r--r--Doc/library/asyncio-eventloop.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/library/asyncio-eventloop.rst b/Doc/library/asyncio-eventloop.rst
index dbe351d..01f4228 100644
--- a/Doc/library/asyncio-eventloop.rst
+++ b/Doc/library/asyncio-eventloop.rst
@@ -739,11 +739,11 @@ Server
Stop serving: close listening sockets and set the :attr:`sockets`
attribute to ``None``.
- The sockets that represent existing incoming client connections are
- leaved open.
+ The sockets that represent existing incoming client connections are left
+ open.
- The server is closed asynchonously, use the :meth:`wait_closed` coroutine
- to wait until the server is closed.
+ The server is closed asynchronously, use the :meth:`wait_closed`
+ coroutine to wait until the server is closed.
.. coroutinemethod:: wait_closed()