From 71ef8a1b94452b94b5e1933f8c4857c333ff4014 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Fri, 17 Jul 2026 01:57:16 +0800 Subject: fix: hide internal macro from documentation Make `vec_string_slice!` private to the crate by adding `#[doc(hidden)]` attribute, since it is an implementation detail not intended for public API consumption --- mingling_picker/src/parselib/utils.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/mingling_picker/src/parselib/utils.rs b/mingling_picker/src/parselib/utils.rs index 603cace..726346c 100644 --- a/mingling_picker/src/parselib/utils.rs +++ b/mingling_picker/src/parselib/utils.rs @@ -251,6 +251,7 @@ pub fn vec_string_to_vec_str(input: &[String]) -> Vec<&str> { /// This is useful for converting owned `String` vectors into borrowed `&str` slices /// for functions that take `&[&str]` or similar parameters. #[macro_export] +#[doc(hidden)] macro_rules! vec_string_slice { ($v:expr) => { $v.iter() -- cgit