From bd1f6cc6d75ec453c28a216b4f3714266045cd8a Mon Sep 17 00:00:00 2001 From: Helmut Lord Date: Thu, 22 Feb 2024 15:14:19 -0500 Subject: [PATCH] doc: zbus: fix work item typo Small change to zbus docs to fix work item typo. Signed-off-by: Helmut Lord --- doc/services/zbus/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/services/zbus/index.rst b/doc/services/zbus/index.rst index f980fad446f..1c4221373da 100644 --- a/doc/services/zbus/index.rst +++ b/doc/services/zbus/index.rst @@ -391,7 +391,7 @@ message reading depends on the subscriber's implementation. It is possible to in rate by following design tips: * Keep the listeners quick-as-possible (deal with them as ISRs). If some processing is needed, - consider submitting a work to a work-queue; + consider submitting a work item to a work-queue; * Try to give producers a high priority to avoid losses; * Leave spare CPU for observers to consume data produced; * Consider using message queues or pipes for intensive byte transfers.