aboutsummaryrefslogtreecommitdiff
path: root/mingling/src/res
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-08-16 00:49:08 +0800
committer魏曹先生 <1992414357@qq.com>2026-08-16 00:49:08 +0800
commit98cbb5937b5e869e5919f88df4f357d10252c0f0 (patch)
tree32a5181160fa0dcf33058fa456ec52f19a1f0f96 /mingling/src/res
parentec3113e25fd06206de20b38aa897923510f57b32 (diff)
docs: fix intra-doc links in mingling crate
Diffstat (limited to 'mingling/src/res')
-rw-r--r--mingling/src/res/confirm.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/mingling/src/res/confirm.rs b/mingling/src/res/confirm.rs
index baf8caf..e07e9a2 100644
--- a/mingling/src/res/confirm.rs
+++ b/mingling/src/res/confirm.rs
@@ -54,8 +54,8 @@ impl ResConfirm {
/// Creates a `Confirm` instance in the confirmed state.
///
- /// The returned `Confirm` will directly return `true` when calling [`ask`](Confirm::ask) or
- /// [`try_ask`](Confirm::try_ask), without prompting the user.
+ /// The returned `Confirm` will directly return `true` when calling [`ask`](ResConfirm::ask) or
+ /// [`try_ask`](ResConfirm::try_ask), without prompting the user.
///
/// # Examples
///
@@ -73,8 +73,8 @@ impl ResConfirm {
/// Marks the Confirm as confirmed.
///
- /// After calling this method, subsequent calls to [`ask`](Confirm::ask) or
- /// [`try_ask`](Confirm::try_ask) on this Confirm will directly return `true`
+ /// After calling this method, subsequent calls to [`ask`](ResConfirm::ask) or
+ /// [`try_ask`](ResConfirm::try_ask) on this Confirm will directly return `true`
/// without prompting the user.
///
/// # Examples