From 299b96c8917a7b2c70c9e8040c064d3186ecd760 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Fri, 14 Aug 2026 00:30:31 +0800 Subject: chore(docs): fix intra-doc link formatting Replace intra-doc links with explicit URLs for types that are not accessible from the current module scope, and add missing panic documentation section. --- mingling_core/src/asset/help.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mingling_core/src/asset/help.rs') diff --git a/mingling_core/src/asset/help.rs b/mingling_core/src/asset/help.rs index 78da1d1..4c20928 100644 --- a/mingling_core/src/asset/help.rs +++ b/mingling_core/src/asset/help.rs @@ -2,8 +2,8 @@ use crate::RenderResult; /// Mingling's program help request. /// -/// It provides help capability to a program by binding an entry type. When [`Program`]'s `user_context.help` is `true`, -/// the first Entry produced by [`Dispatcher`] will be sent into [`HelpRequest`] and rendered into a [`RenderResult`] for the user. +/// It provides help capability to a program by binding an entry type. When [`Program`](https://docs.rs/mingling/latest/mingling/struct.Program.html)'s `user_context.help` is `true`, +/// the first Entry produced by [`Dispatcher`](https://docs.rs/mingling/latest/mingling/trait.Dispatcher.html) will be sent into [`HelpRequest`] and rendered into a [`RenderResult`] for the user. /// /// # Manual impl /// -- cgit