From d0a05baeb5bdbfb47ae765cf1401a5b307461418 Mon Sep 17 00:00:00 2001 From: Hakki Date: Sun, 25 Aug 2024 18:56:59 +0200 Subject: [PATCH] cli/man: added info --command flag --- src/bin/topola/cli.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/topola/cli.rs b/src/bin/topola/cli.rs index d84a745..c4053ea 100644 --- a/src/bin/topola/cli.rs +++ b/src/bin/topola/cli.rs @@ -12,6 +12,6 @@ pub struct Cli { help = "Specify the output Topola session file (*.ses), by default, it is the input filename with extension changed to .ses") ] pub output: Option, - #[arg(short, long, value_name = "FILE", help = "TODO")] + #[arg(short, long, value_name = "COMMAND FILE", help = "JSON-like file with .cmd extension, containing sequence of available commands ")] pub commands: Option, }