From 36bcd051f29c8f94cbdf5e2d54f6ad6f85ab2f6b Mon Sep 17 00:00:00 2001 From: Weicao-CatilGrass <1992414357@qq.com> Date: Sun, 24 May 2026 01:18:13 +0800 Subject: Update doc examples and fix code references in setups --- mingling/src/setups/repl_basic.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mingling/src/setups') diff --git a/mingling/src/setups/repl_basic.rs b/mingling/src/setups/repl_basic.rs index 5884489..fbb806e 100644 --- a/mingling/src/setups/repl_basic.rs +++ b/mingling/src/setups/repl_basic.rs @@ -24,12 +24,12 @@ pub enum BasicREPLPromptSetup { } impl BasicREPLPromptSetup { - /// Creates a new [`BasicREPLPrompt`] with the given prompt string. + /// Creates a new [`BasicREPLPromptSetup`] with the given prompt string. pub fn simple(prompt: impl Into) -> Self { Self::Prompt(prompt.into()) } - /// Creates a new [`BasicREPLPrompt`] with the given function. + /// Creates a new [`BasicREPLPromptSetup`] with the given function. pub fn func(func: fn() -> String) -> Self { Self::Func(func) } -- cgit