From ab803966fedb640fedc95e22259e09b2922b22a0 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Fri, 17 Jul 2026 04:12:23 +0800 Subject: docs(picker): replace doc comment with `include_str!` reference --- mingling_picker/src/picker.rs | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'mingling_picker') diff --git a/mingling_picker/src/picker.rs b/mingling_picker/src/picker.rs index 4efb532..69b1671 100644 --- a/mingling_picker/src/picker.rs +++ b/mingling_picker/src/picker.rs @@ -10,13 +10,7 @@ pub use result::*; use crate::{Pickable, PickerArg, PickerArgResult}; -/// Picker, used to record all states of a parameter parsing -/// -/// Includes the following: -/// -/// - Basic arguments -/// - Parsing states -/// - Parsing results +#[doc = include_str!("../README.md")] pub struct Picker<'a, Route = ()> { route_phantom: PhantomData, -- cgit