diff options
author | Adrian Herrmann <[email protected]> | 2023-11-24 10:34:05 +0100 |
---|---|---|
committer | Adrian Herrmann <[email protected]> | 2023-11-24 10:35:13 +0100 |
commit | 2b6142c1c22b2045f1a82cc2ee47ebfda9d8e4a3 (patch) | |
tree | 8d9d6869936c02b4ef407baab328adbf55f85816 | |
parent | b0de21cea7f01db97a46d72d8edcb7944aaa4387 (diff) |
doc: Use different titles for async examples
Give the two async examples different titles in documentation so they
don't appear with the same name in navigation.
Pick-to: 6.6
Change-Id: I342a5b611e3d2b6cc415162c8ce5a0ee9441c8a8
Reviewed-by: Cristian Maureira-Fredes <[email protected]>
-rw-r--r-- | examples/async/eratosthenes/doc/eratosthenes.rst | 4 | ||||
-rw-r--r-- | examples/async/minimal/doc/minimal.rst | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/examples/async/eratosthenes/doc/eratosthenes.rst b/examples/async/eratosthenes/doc/eratosthenes.rst index 5b8303911..56e9f391b 100644 --- a/examples/async/eratosthenes/doc/eratosthenes.rst +++ b/examples/async/eratosthenes/doc/eratosthenes.rst @@ -1,5 +1,5 @@ -Async examples -============== +Async "Eratosthenes" Example +============================ The Python language provides keywords for asynchronous operations, i.e., "async" to define coroutines or "await" to schedule asynchronous calls in the diff --git a/examples/async/minimal/doc/minimal.rst b/examples/async/minimal/doc/minimal.rst index 10af70910..54f847ea9 100644 --- a/examples/async/minimal/doc/minimal.rst +++ b/examples/async/minimal/doc/minimal.rst @@ -1,5 +1,5 @@ -Async examples -============== +Async "Minimal" Example +======================= The Python language provides keywords for asynchronous operations, i.e., "async" to define coroutines or "await" to schedule asynchronous calls in the |