Change "set_after" reference to `say_after`. (GH-9384)

This commit is contained in:
Danny Hermes 2018-09-17 21:49:21 -07:00 committed by Yury Selivanov
parent ac94e38d07
commit 7bfbda46f4
1 changed files with 1 additions and 1 deletions

View File

@ -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():