summaryrefslogtreecommitdiffstats
path: root/Doc/library/asyncio-protocol.rst
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2014-07-23 08:27:17 (GMT)
committerAndrew Svetlov <andrew.svetlov@gmail.com>2014-07-23 08:27:17 (GMT)
commit588517ca634931fc2bb5c3c0701a56bcf6f1a78a (patch)
tree063cc478940921a32373d3e13b785162770b4d5d /Doc/library/asyncio-protocol.rst
parent889d6463b39ab2d6068b7eed7212eebd16e39574 (diff)
downloadcpython-588517ca634931fc2bb5c3c0701a56bcf6f1a78a.zip
cpython-588517ca634931fc2bb5c3c0701a56bcf6f1a78a.tar.gz
cpython-588517ca634931fc2bb5c3c0701a56bcf6f1a78a.tar.bz2
Fix grammar
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 9c52b38..952ab69 100644
--- a/Doc/library/asyncio-protocol.rst
+++ b/Doc/library/asyncio-protocol.rst
@@ -459,7 +459,7 @@ The event loop is running twice. The
example to raise an exception if the server is not listening, instead of
having to write a short coroutine to handle the exception and stop the
running loop. At :meth:`~BaseEventLoop.run_until_complete` exit, the loop is
-no more running, so there is no need to stop the loop in case of an error.
+no longer running, so there is no need to stop the loop in case of an error.
Echo server
-----------