diff options
author | Yury Selivanov <yury@magic.io> | 2018-09-20 05:17:09 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-20 05:17:09 (GMT) |
commit | ffef50f1f5907e5f0f175b12088d3e509011f126 (patch) | |
tree | 43c2024aa70b476592119c882abd7902ac91fce2 | |
parent | fd54a45f7987d5b3343c74cb49a12bd39bdad5bc (diff) | |
download | cpython-ffef50f1f5907e5f0f175b12088d3e509011f126.zip cpython-ffef50f1f5907e5f0f175b12088d3e509011f126.tar.gz cpython-ffef50f1f5907e5f0f175b12088d3e509011f126.tar.bz2 |
bpo-34746: Fix stop -> close (GH-9437)
-rw-r--r-- | Doc/library/asyncio-llapi-index.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/asyncio-llapi-index.rst b/Doc/library/asyncio-llapi-index.rst index 7fb1e60..0ab322a 100644 --- a/Doc/library/asyncio-llapi-index.rst +++ b/Doc/library/asyncio-llapi-index.rst @@ -53,7 +53,7 @@ See also the main documentation section about the * - :meth:`loop.stop` - Stop the event loop. - * - :meth:`loop.stop` + * - :meth:`loop.close` - Close the event loop. * - :meth:`loop.is_running()` |