From 0132ad0fde1dc5046aa86e89d1550d0ce6c8e02a Mon Sep 17 00:00:00 2001 From: Rym Bouabid Date: Mon, 11 Sep 2023 18:39:21 +0200 Subject: [PATCH] Revamp Shared Memory Example: Revisit the documentation Remove "Example" from the title. Extend the \brief. Task-number: QTBUG-108858 Pick-to: 6.6 6.5 Change-Id: Ie8bd0c808503861027f80493c430e8ac1baada5f Reviewed-by: Ivan Solovev --- examples/corelib/ipc/doc/src/sharedmemory.qdoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/corelib/ipc/doc/src/sharedmemory.qdoc b/examples/corelib/ipc/doc/src/sharedmemory.qdoc index 7ea4ffb25d8..b06849cee36 100644 --- a/examples/corelib/ipc/doc/src/sharedmemory.qdoc +++ b/examples/corelib/ipc/doc/src/sharedmemory.qdoc @@ -3,10 +3,10 @@ /*! \example ipc/sharedmemory - \title Shared Memory Example + \title Shared Memory \ingroup examples-ipc - \brief Demonstrates doing inter-process communication using shared memory with - the QSharedMemory class. + \brief Demonstrates how to share image data between different processes + using the Shared Memory IPC mechanism. The Shared Memory example shows how to use the QSharedMemory class to implement inter-process communication using shared memory. To