aboutsummaryrefslogtreecommitdiff
path: root/arg_picker/src
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-07-17 11:56:35 +0800
committer魏曹先生 <1992414357@qq.com>2026-07-17 11:56:35 +0800
commit5ea1a7f930cbb764b46d451706458c118c848c40 (patch)
treee5210509a0f0063993a4a43e952edae9734dfd5a /arg_picker/src
parent77a9e536739f1f8f5052e647c1da3476895eabe0 (diff)
docs(mingling): move crate-level docs to separate lib.md
Diffstat (limited to 'arg_picker/src')
-rw-r--r--arg_picker/src/corebind/entry_picker.rs8
1 files changed, 4 insertions, 4 deletions
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<Next>(
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<Next, F>(
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<Next>(
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<Next, F>(
self,