From bbae1f0d6ea48d243f53305e5820e78dbc496ec2 Mon Sep 17 00:00:00 2001 From: Adrian Wannenmacher Date: Sun, 24 Sep 2023 15:16:18 +0200 Subject: [PATCH] simplify help texts --- src/cli.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/cli.rs b/src/cli.rs index 19bd0dd..ec2d90e 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -6,15 +6,15 @@ use clap::Parser; #[derive(Debug, Parser)] #[clap(author, about, version)] pub(crate) struct Args { - /// Whether to output data as json. + /// Output data as json. #[clap(long)] pub json: bool, - /// Whether to output raw uid and gid numbers. + /// Don't output names, only uid and gid. #[clap(long)] pub raw: bool, - /// The roots to use for discovery. + /// Paths from where to start discovery. Recursion is applied to paths that are directories. #[clap(default_value = ".")] pub roots: Vec, }