Improve help text

This commit is contained in:
Sasha Koshka 2024-10-11 11:20:26 -04:00
parent 6b81c63251
commit ec7cfb4448

View File

@ -21,11 +21,10 @@ export fn main() void = {
"bulletin board", "bulletin board",
("post", [ ("post", [
('a', "post anonymously"), ('a', "post anonymously"),
('b', "board", "which board to post on"), ('b', "board", "post on a board other than general"),
"message...",
]): getopt::subcmd_help, ]): getopt::subcmd_help,
("read", [ ("read", [
('b', "board", "which board to read"), ('b', "board", "read a board other than general"),
('n', "number", "display N most recent messages"), ('n', "number", "display N most recent messages"),
]): getopt::subcmd_help); ]): getopt::subcmd_help);
defer getopt::finish(&cmd); defer getopt::finish(&cmd);