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

Fix parameters order in z_declare_keyexpr/z_undeclare_keyexpr documentation #732

Merged
merged 1 commit into from
Oct 10, 2024
Merged
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
4 changes: 2 additions & 2 deletions include/zenoh-pico/api/primitives.h
Original file line number Diff line number Diff line change
Expand Up @@ -1914,8 +1914,8 @@ z_result_t z_keyexpr_from_substr_autocanonize(z_owned_keyexpr_t *keyexpr, const
* in the routing tables.
*
* Parameters:
* declared_keyexpr: Pointer to an uninitialized :c:type:`z_owned_keyexpr_t` to contain the declared keyexpr.
* zs: Pointer to a :c:type:`z_loaned_session_t` to declare the keyexpr through.
* declared_keyexpr: Pointer to an uninitialized :c:type:`z_owned_keyexpr_t` to contain the declared keyexpr.
* keyexpr: Pointer to a :c:type:`z_loaned_keyexpr_t` to bind the keyexpr with.
*
* Return:
Expand All @@ -1928,8 +1928,8 @@ z_result_t z_declare_keyexpr(const z_loaned_session_t *zs, z_owned_keyexpr_t *de
* Undeclares a keyexpr.
*
* Parameters:
* keyexpr: Moved :c:type:`z_owned_keyexpr_t` to undeclare.
* zs: Pointer to a :c:type:`z_loaned_session_t` to undeclare the data through.
* keyexpr: Moved :c:type:`z_owned_keyexpr_t` to undeclare.
*
* Return:
* ``0`` if undeclare is successful, ``negative value`` otherwise.
Expand Down
Loading