From aa2b0daa88089df32b3ea67d7c1831b5d8fd64f8 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sat, 15 Aug 2026 07:32:07 +0800 Subject: chore: replace intra-doc links with plain code spans --- mingling/src/res/osc94.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'mingling/src/res/osc94.rs') diff --git a/mingling/src/res/osc94.rs b/mingling/src/res/osc94.rs index 8f873aa..3c80290 100644 --- a/mingling/src/res/osc94.rs +++ b/mingling/src/res/osc94.rs @@ -6,12 +6,12 @@ pub use state::*; /// Provides support for the `OSC 9;4` protocol. You can inject it into the execution flow /// through Mingling's resource injection system, and use it to control your process state. /// -/// Typically, `OSC94` is registered via [`OSC94Setup`], and then injected into functions +/// Typically, `OSC94` is registered via `OSC94Setup`, and then injected into functions /// through Mingling's resource injection system. /// /// # Registration /// -/// Before use, the [`OSC94Setup`] must be registered with the program: +/// Before use, the `OSC94Setup` must be registered with the program: /// /// ``` /// # use mingling::MockProgramCollect as ThisProgram; @@ -70,7 +70,7 @@ impl OSC94 { /// A guard for modifying process state. /// /// Obtained via [`OSC94::get_mut`]. When the guard is dropped, the process state is -/// automatically restored to [`OS94State::Clean`], so no manual cleanup is needed. +/// automatically restored to `OS94State::Clean`, so no manual cleanup is needed. /// /// # Example /// -- cgit