Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

zbus: observervation -> observation #81182

Merged
merged 1 commit into from
Nov 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/services/zbus/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ The above figure illustrates some states, from (a) to (d), for channels from ``C
``Subscriber 1``, and the observations. The last two are in orange to indicate they are dynamically
allocated (runtime observation). (a) shows that the observer and all observations are enabled. (b)
shows the observer is disabled, so the event dispatcher will ignore it. (c) shows the observer
enabled. However, there is one static observervation disabled. The event dispatcher will only stop
enabled. However, there is one static observation disabled. The event dispatcher will only stop
sending notifications from channel ``C3``. In (d), the event dispatcher will stop sending
notifications from channels ``C3`` and ``C5`` to ``Subscriber 1``.

Expand Down
4 changes: 2 additions & 2 deletions include/zephyr/zbus/zbus.h
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ struct zbus_channel_observation {
/* clang-format off */

/**
* @brief Add a static channel observervation.
* @brief Add a static channel observation.
*
* This macro initializes a channel observation by receiving the
* channel and the observer.
Expand All @@ -290,7 +290,7 @@ struct zbus_channel_observation {
/* clang-format on */

/**
* @brief Add a static channel observervation.
* @brief Add a static channel observation.
*
* This macro initializes a channel observation by receiving the
* channel and the observer.
Expand Down
Loading