aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdrian Herrmann <adrian.herrmann@qt.io>2023-11-24 10:34:05 +0100
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2023-11-24 11:15:22 +0000
commit696af193a68dc5eb02082de23b9d2a17aacf78a3 (patch)
tree1abef0b6cf64b86e068a5ecc431d72792b6cae56
parentbda1f25e8ebc5ffa990171cd1be0111f2e183d86 (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. Change-Id: I342a5b611e3d2b6cc415162c8ce5a0ee9441c8a8 Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io> (cherry picked from commit 2b6142c1c22b2045f1a82cc2ee47ebfda9d8e4a3) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-rw-r--r--examples/async/eratosthenes/doc/eratosthenes.rst4
-rw-r--r--examples/async/minimal/doc/minimal.rst4
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