Skip to content

Commit

Permalink
doc: fix tags typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jean-roland committed Mar 29, 2024
1 parent 9a7287c commit 7454fc9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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

0 comments on commit 7454fc9

Please sign in to comment.