aboutsummaryrefslogtreecommitdiff
path: root/mingling/src/res/confirmer.rs
diff options
context:
space:
mode:
Diffstat (limited to 'mingling/src/res/confirmer.rs')
-rw-r--r--mingling/src/res/confirmer.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/mingling/src/res/confirmer.rs b/mingling/src/res/confirmer.rs
index 900562b..d92e2a0 100644
--- a/mingling/src/res/confirmer.rs
+++ b/mingling/src/res/confirmer.rs
@@ -4,12 +4,12 @@ use std::io::{BufRead, Write};
///
/// This structure caches the confirmed state to avoid repeated prompts.
///
-/// Typically, `Confirmer` is registered via [`ConfirmerSetup`], and then injected into functions
+/// Typically, `Confirmer` is registered via `ConfirmerSetup`, and then injected into functions
/// through Mingling's resource injection system.
///
/// # Registration
///
-/// Before use, the [`ConfirmerSetup`] must be registered with the program:
+/// Before use, the `ConfirmerSetup` must be registered with the program:
///
/// ```
/// # use mingling::MockProgramCollect as ThisProgram;