From be0b69a53570b15929efec78f62c64d2b7e5fdba Mon Sep 17 00:00:00 2001 From: DastInDark <2350416+hitenkoku@users.noreply.github.com> Date: Fri, 12 Aug 2022 16:11:29 +0900 Subject: [PATCH] added json-timeline help_heading and help_str --- src/detections/configs.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/detections/configs.rs b/src/detections/configs.rs index 77a0d4f9..43929d2e 100644 --- a/src/detections/configs.rs +++ b/src/detections/configs.rs @@ -224,7 +224,8 @@ pub struct Config { #[clap(help_heading = Some("OTHER-ACTIONS"), long = "set-default-profile", value_name = "PROFILE")] pub set_default_profile: Option, - #[clap(short = 'j', long = "json-timeline")] + /// Output result in JSON format + #[clap(help_heading = Some("OTHER-ACTIONS"), short = 'j', long = "json-timeline")] pub json_timeline: bool, }