From 250d56d616dcc9b93bc772db6e887f1a54336c81 Mon Sep 17 00:00:00 2001 From: Michael Ilyin Date: Fri, 1 Mar 2024 17:30:36 +0100 Subject: [PATCH] tags --- include/zenoh_commons.h | 2 +- src/commons.rs | 2 +- src/config.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/zenoh_commons.h b/include/zenoh_commons.h index 38425564f..cfa5dbb21 100644 --- a/include/zenoh_commons.h +++ b/include/zenoh_commons.h @@ -1062,7 +1062,7 @@ typedef struct zc_owned_liveliness_get_options_t { * * Should this invariant be broken when the payload is passed to one of zenoh's `put_owned` * functions, then the operation will fail (but the passed value will still be consumed). - * tags{c.zc_owned_payload_t, api.buffer.owned} + * tags{c.zc_owned_payload_t} */ typedef struct zc_owned_payload_t { struct z_bytes_t payload; diff --git a/src/commons.rs b/src/commons.rs index 36c7a51ad..d3442c3c2 100644 --- a/src/commons.rs +++ b/src/commons.rs @@ -103,7 +103,7 @@ impl From> for z_timestamp_t { /// functions, then the operation will fail (but the passed value will still be consumed). #[allow(non_camel_case_types)] #[repr(C)] -/// tags{c.zc_owned_payload_t, api.buffer.owned} +/// tags{c.zc_owned_payload_t} pub struct zc_owned_payload_t { pub payload: z_bytes_t, pub _owner: [usize; 5], diff --git a/src/config.rs b/src/config.rs index d38cf8f51..c853bdddd 100644 --- a/src/config.rs +++ b/src/config.rs @@ -32,7 +32,7 @@ pub static Z_CLIENT: c_uint = WhatAmI::Client as c_uint; /// tags{c.z_config_mode_key, api.config.mode} pub static Z_CONFIG_MODE_KEY: &c_char = unsafe { &*(b"mode\0".as_ptr() as *const c_char) }; #[no_mangle] -/// tags{c.z_config_connect_key, api.config.connect} +/// tags{c.z_config_connect_key, api.config.connect.endpoints} pub static Z_CONFIG_CONNECT_KEY: &c_char = unsafe { &*(b"connect/endpoints\0".as_ptr() as *const c_char) }; #[no_mangle]