diff options
author | Astatin <[email protected]> | 2025-07-22 22:27:18 +0200 |
---|---|---|
committer | Astatin <[email protected]> | 2025-07-22 22:27:18 +0200 |
commit | f4e52f216beca25f680c4744109f247021a7d944 (patch) | |
tree | 0fcc0105e081406ea693ddd579b62ff3132c2c87 | |
parent | e47f2eb23b624428323bcab0fb6781cc6d107e38 (diff) |
Fix --help format
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 84167aa..d247b77 100644 --- a/src/main.rs +++ b/src/main.rs @@ -77,7 +77,7 @@ struct Cli { #[arg(long, default_value_t = false)] no_response: bool, - /// Verbosity. Coma separated values (possible values: infos/debug/opcode_dump/halt_cycles/errors,none) + /// Verbosity. Coma separated values (possible values: infos,debug,opcode_dump,halt_cycles,errors,none) #[arg(short, long, default_value = "infos,errors")] verbosity: String, } |