Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Doc/library/asyncio-task.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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():
Expand Down