diff options
author | Danny Hermes <daniel.j.hermes@gmail.com> | 2018-09-18 04:49:21 (GMT) |
---|---|---|
committer | Yury Selivanov <yury@magic.io> | 2018-09-18 04:49:21 (GMT) |
commit | 7bfbda46f49c0b2c43e128835106cf13315b6ae8 (patch) | |
tree | 8cb057a19778c549f60d58d071b5c4bd8ca707c3 | |
parent | ac94e38d076aebc56c2ff96a249b5e40f32633ea (diff) | |
download | cpython-7bfbda46f49c0b2c43e128835106cf13315b6ae8.zip cpython-7bfbda46f49c0b2c43e128835106cf13315b6ae8.tar.gz cpython-7bfbda46f49c0b2c43e128835106cf13315b6ae8.tar.bz2 |
Change "set_after" reference to `say_after`. (GH-9384)
-rw-r--r-- | Doc/library/asyncio-task.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/asyncio-task.rst b/Doc/library/asyncio-task.rst index 4893a7c..25a0768 100644 --- a/Doc/library/asyncio-task.rst +++ b/Doc/library/asyncio-task.rst @@ -75,7 +75,7 @@ To actually run a coroutine asyncio provides three main mechanisms: * The :func:`asyncio.create_task` function to run coroutines concurrently as asyncio :class:`Tasks <Task>`. - Let's modify the above example and run two "set_after" coroutines + Let's modify the above example and run two ``say_after`` coroutines *concurrently*:: async def main(): |