From 32c2471073b8061b40ecff082273a0b8432720bc Mon Sep 17 00:00:00 2001 From: steven-omaha <35634100+steven-omaha@users.noreply.github.com> Date: Mon, 22 May 2023 12:32:21 +0200 Subject: [PATCH] docs: extend 'get_args' docstring --- crates/pacdef_core/src/args.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/pacdef_core/src/args.rs b/crates/pacdef_core/src/args.rs index 83fd41e..e34673e 100644 --- a/crates/pacdef_core/src/args.rs +++ b/crates/pacdef_core/src/args.rs @@ -141,7 +141,7 @@ fn build_noconfirm_arg() -> Arg { .action(ArgAction::SetTrue) } -/// Get and parse the CLI arguments. +/// Get and parse the CLI arguments. Returns an instance of [`clap::ArgMatches`]. #[must_use] pub fn get() -> clap::ArgMatches { build_cli().get_matches()