From 5a23e6b3ad655b15b412720ab81b0508866bebce Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sat, 27 Jun 2026 18:28:52 +0800 Subject: docs: improve documentation, mark internal items as `#[doc(hidden)]` Add module-level docs for the hook system, enhance doc examples for macros with usage syntax, fix typos in cross-references, and hide internal debugging macros and mock types from public documentation --- mingling_core/src/any.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mingling_core/src/any.rs') diff --git a/mingling_core/src/any.rs b/mingling_core/src/any.rs index b115e28..b586f09 100644 --- a/mingling_core/src/any.rs +++ b/mingling_core/src/any.rs @@ -12,7 +12,7 @@ pub mod group; /// Note: /// - If an enum value that does not belong to this type is incorrectly specified, it will be **unsafely** unwrapped by the scheduler /// - Structured output via `--json`/`--yaml` is only available for types that implement -/// [`StructuralData`], which implies `serde::Serialize`. +/// \[`StructuralData`\], which implies `serde::Serialize`. /// - It is recommended to use the `pack!` macro from [mingling_macros](https://crates.io/crates/mingling_macros) to create types that can be converted to `AnyOutput`, which guarantees runtime safety #[derive(Debug)] pub struct AnyOutput { -- cgit