From 588517ca634931fc2bb5c3c0701a56bcf6f1a78a Mon Sep 17 00:00:00 2001 From: Andrew Svetlov Date: Wed, 23 Jul 2014 11:27:17 +0300 Subject: [PATCH] Fix grammar --- Doc/library/asyncio-protocol.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/asyncio-protocol.rst b/Doc/library/asyncio-protocol.rst index 9c52b384c22..952ab690f2f 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 -----------