From 7454fc9061d2221c8e66c7b1e01234a877c4d426 Mon Sep 17 00:00:00 2001 From: Jean-Roland Date: Fri, 29 Mar 2024 10:35:44 +0100 Subject: [PATCH] doc: fix tags typo --- include/zenoh_commons.h | 2 +- src/keyexpr.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/zenoh_commons.h b/include/zenoh_commons.h index fb8832e19..67ac967af 100644 --- a/include/zenoh_commons.h +++ b/include/zenoh_commons.h @@ -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); /** diff --git a/src/keyexpr.rs b/src/keyexpr.rs index 9e7a0fcee..a5c90d2aa 100644 --- a/src/keyexpr.rs +++ b/src/keyexpr.rs @@ -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 {