From 6d2d38799b9658cf26524dbc96a40bb82ed1fbe3 Mon Sep 17 00:00:00 2001 From: mertd Date: Mon, 1 Apr 2024 19:52:16 +0900 Subject: [PATCH] fix interactive args doc --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index e85bba0..6865bd9 100644 --- a/src/main.rs +++ b/src/main.rs @@ -9,7 +9,7 @@ const PREFIX: &str = "[topclean]"; #[derive(Parser, Debug)] #[clap(author, version, about, long_about = None)] struct Args { - /// Skip apps that require user input to exit even if there were no errors + /// Include apps that require user input to exit even if there were no errors #[clap(short, long)] interactive: bool, }