Skip to content

Commit e025747

Browse files
committed
fix titles once agian.
1 parent 270ee6e commit e025747

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

Doc/howto/a-conceptual-overview-of-asyncio.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -349,9 +349,9 @@ This is where the magic happens.
349349
You'll come away from this section knowing what ``await`` does behind the scenes
350350
and how to make your own asynchronous operators.
351351

352-
============================
353-
Inner workings of coroutines
354-
============================
352+
================================
353+
The inner workings of coroutines
354+
================================
355355

356356
:mod:`!asyncio` leverages four components to pass around control.
357357

@@ -470,9 +470,9 @@ Futures are much more versatile and will be marked as done when you say so.
470470
In this way, they're the flexible interface for you to make your own conditions
471471
for waiting and resuming.
472472

473-
======================
474-
Homemade asyncio.sleep
475-
======================
473+
========================
474+
A homemade asyncio.sleep
475+
========================
476476

477477
We'll go through an example of how you could leverage a future to create your
478478
own variant of asynchronous sleep (``async_sleep``) which mimics

0 commit comments

Comments
 (0)