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 tags typo #306

Merged
merged 1 commit into from
Mar 29, 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 include/zenoh_commons.h
Original file line number Diff line number Diff line change
Expand Up @@ -2513,7 +2513,7 @@ ZENOHC_API const char *z_time_now_as_str(const char *buf, size_t len);
ZENOHC_API bool z_timestamp_check(struct z_timestamp_t ts);
/**
* Undeclare the key expression generated by a call to :c:func:`z_declare_keyexpr`.
* tags{c.z_undeclare_keyepr, api.keyexpr.undeclare}
* tags{c.z_undeclare_keyexpr, api.keyexpr.undeclare}
*/
ZENOHC_API int8_t z_undeclare_keyexpr(struct z_session_t session, struct z_owned_keyexpr_t *kexpr);
/**
Expand Down
2 changes: 1 addition & 1 deletion src/keyexpr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ pub extern "C" fn z_declare_keyexpr(
}

/// Undeclare the key expression generated by a call to :c:func:`z_declare_keyexpr`.
/// tags{c.z_undeclare_keyepr, api.keyexpr.undeclare}
/// tags{c.z_undeclare_keyexpr, api.keyexpr.undeclare}
#[allow(clippy::missing_safety_doc)]
#[no_mangle]
pub extern "C" fn z_undeclare_keyexpr(session: z_session_t, kexpr: &mut z_owned_keyexpr_t) -> i8 {
Expand Down
Loading