aboutsummaryrefslogtreecommitdiff
path: root/mingling/src/osc94/guard.rs
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/osc94/guard.rs
parentec3113e25fd06206de20b38aa897923510f57b32 (diff)
docs: fix intra-doc links in mingling crate
Diffstat (limited to 'mingling/src/osc94/guard.rs')
-rw-r--r--mingling/src/osc94/guard.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/mingling/src/osc94/guard.rs b/mingling/src/osc94/guard.rs
index 793abec..d17f483 100644
--- a/mingling/src/osc94/guard.rs
+++ b/mingling/src/osc94/guard.rs
@@ -2,12 +2,12 @@ use crate::osc94::OSC94State;
/// A guard for modifying process state.
///
-/// Obtained via [`OSC94::get_mut`]. When the guard is dropped, the process state is
+/// Obtained via [`crate::res::ResOSC94::get_mut`]. When the guard is dropped, the process state is
/// automatically restored to `OS94State::Clean`, so no manual cleanup is needed.
///
/// # Example
///
-/// Create a guard via [`ResOSC94`], and the state is automatically restored to Clean
+/// Create a guard via [`crate::res::ResOSC94`], and the state is automatically restored to Clean
/// when the guard is dropped:
///
/// ```