From 5ea1a7f930cbb764b46d451706458c118c848c40 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Fri, 17 Jul 2026 11:56:35 +0800 Subject: docs(mingling): move crate-level docs to separate lib.md --- arg_picker/src/corebind/entry_picker.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'arg_picker/src/corebind/entry_picker.rs') diff --git a/arg_picker/src/corebind/entry_picker.rs b/arg_picker/src/corebind/entry_picker.rs index 69bc4d8..d543f98 100644 --- a/arg_picker/src/corebind/entry_picker.rs +++ b/arg_picker/src/corebind/entry_picker.rs @@ -30,7 +30,7 @@ pub trait EntryPicker<'a, This> { /// /// # Parameters /// - /// * `arg` — The argument definition, typically obtained from [`crate::arg`]. + /// * `arg` — The argument definition, typically obtained from [`crate::macros::arg`]. fn pick( self, arg: impl Into<&'a PickerArg<'a, Next>>, @@ -53,7 +53,7 @@ pub trait EntryPicker<'a, This> { /// /// # Parameters /// - /// * `arg` — The argument definition, typically obtained from [`crate::arg`]. + /// * `arg` — The argument definition, typically obtained from [`crate::macros::arg`]. /// * `func` — A closure that provides a default value if the arg is not provided by the user. fn pick_or( self, @@ -78,7 +78,7 @@ pub trait EntryPicker<'a, This> { /// /// # Parameters /// - /// * `arg` — The argument definition, typically obtained from [`crate::arg`]. + /// * `arg` — The argument definition, typically obtained from [`crate::macros::arg`]. fn pick_or_default( self, arg: impl Into<&'a PickerArg<'a, Next>>, @@ -100,7 +100,7 @@ pub trait EntryPicker<'a, This> { /// /// # Parameters /// - /// * `arg` — The argument definition, typically obtained from [`crate::arg`]. + /// * `arg` — The argument definition, typically obtained from [`crate::macros::arg`]. /// * `func` — A closure that produces a route value if the arg is not provided by the user. fn pick_or_route( self, -- cgit