diff options
author | Grant <grantrobertsmith@gmail.com> | 2018-09-14 21:37:48 (GMT) |
---|---|---|
committer | Yury Selivanov <yury@magic.io> | 2018-09-14 21:37:48 (GMT) |
commit | 5acccfaf680ae737bcd8b09f3a85719e3e904ef2 (patch) | |
tree | 08ce7dea57ec25a718c88cb9b4bc9718bd5a5dbc /Doc/library/asyncio-dev.rst | |
parent | 5903296045b586b9cd1fce0b1e02caf896028d1d (diff) | |
download | cpython-5acccfaf680ae737bcd8b09f3a85719e3e904ef2.zip cpython-5acccfaf680ae737bcd8b09f3a85719e3e904ef2.tar.gz cpython-5acccfaf680ae737bcd8b09f3a85719e3e904ef2.tar.bz2 |
Grammar fix (GH-9318)
Diffstat (limited to 'Doc/library/asyncio-dev.rst')
-rw-r--r-- | Doc/library/asyncio-dev.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/asyncio-dev.rst b/Doc/library/asyncio-dev.rst index e4986ba..87abe92 100644 --- a/Doc/library/asyncio-dev.rst +++ b/Doc/library/asyncio-dev.rst @@ -407,7 +407,7 @@ traceback where the task was created. Example of log in debug mode: Close transports and event loops -------------------------------- -When a transport is no more needed, call its ``close()`` method to release +When a transport is no longer needed, call its ``close()`` method to release resources. Event loops must also be closed explicitly. If a transport or an event loop is not closed explicitly, a |