diff options
author | Gabor Javorszky <g.javorszky@f5.com> | 2024-08-01 10:15:57 +0100 |
---|---|---|
committer | Gabor Javorszky <gabor@javorszky.co.uk> | 2024-08-01 18:27:57 +0100 |
commit | e743b6cef5d86e340a5538286baf733a21204e63 (patch) | |
tree | 74fa91860f1d311a5b3e0028c071b3775bb7c263 /tools | |
parent | 1b4843036d6aa10fea6c23ed455c30f4cc9d873d (diff) | |
download | unit-e743b6cef5d86e340a5538286baf733a21204e63.tar.gz unit-e743b6cef5d86e340a5538286baf733a21204e63.tar.bz2 |
tools/unitctl: remove (default) from option text
Diffstat (limited to 'tools')
-rw-r--r-- | tools/unitctl/unitctl/src/unitctl.rs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/unitctl/unitctl/src/unitctl.rs b/tools/unitctl/unitctl/src/unitctl.rs index a36f006c..50bd1eb6 100644 --- a/tools/unitctl/unitctl/src/unitctl.rs +++ b/tools/unitctl/unitctl/src/unitctl.rs @@ -51,7 +51,7 @@ pub(crate) enum Commands { short = 't', long = "output-format", default_value = "json-pretty", - help = "Output format: yaml, json, json-pretty (default)" + help = "Output format: yaml, json, json-pretty" )] output_format: OutputFormat, }, @@ -68,7 +68,7 @@ pub(crate) enum Commands { short = 't', long = "output-format", default_value = "json-pretty", - help = "Output format: yaml, json, json-pretty (default)" + help = "Output format: yaml, json, json-pretty" )] output_format: OutputFormat, #[arg( @@ -98,7 +98,7 @@ pub(crate) enum Commands { short = 't', long = "output-format", default_value = "json-pretty", - help = "Output format: yaml, json, json-pretty (default)" + help = "Output format: yaml, json, json-pretty" )] output_format: OutputFormat, }, @@ -110,7 +110,7 @@ pub(crate) enum Commands { short = 't', long = "output-format", default_value = "json-pretty", - help = "Output format: yaml, json, json-pretty (default)" + help = "Output format: yaml, json, json-pretty" )] output_format: OutputFormat, }, @@ -136,7 +136,7 @@ pub struct InstanceArgs { short = 't', long = "output-format", default_value = "text", - help = "Output format: text, yaml, json, json-pretty (default)" + help = "Output format: text, yaml, json, json-pretty" )] pub output_format: OutputFormat, @@ -171,7 +171,7 @@ pub struct ApplicationArgs { short = 't', long = "output-format", default_value = "text", - help = "Output format: text, yaml, json, json-pretty (default)" + help = "Output format: text, yaml, json, json-pretty" )] pub output_format: OutputFormat, |