From 079d8037ab59ea13dcff1811c1e32884e7a01ae8 Mon Sep 17 00:00:00 2001 From: Orhun Parmaksız Date: Sun, 12 Dec 2021 01:29:47 +0300 Subject: Enable help messages for command line arguments (#239) --- src/command/server.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/command/server.rs') diff --git a/src/command/server.rs b/src/command/server.rs index 2fcf23d6..ad7addfd 100644 --- a/src/command/server.rs +++ b/src/command/server.rs @@ -11,10 +11,10 @@ pub enum Cmd { aliases=&["s", "st", "sta", "star"], )] Start { - #[structopt(about = "specify the host address to bind", long, short)] + #[structopt(help = "specify the host address to bind", long, short)] host: Option, - #[structopt(about = "specify the port to bind", long, short)] + #[structopt(help = "specify the port to bind", long, short)] port: Option, }, } -- cgit v1.3.1