diff options
| author | Orhun Parmaksız <orhunparmaksiz@gmail.com> | 2021-12-12 01:29:47 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-11 22:29:47 +0000 |
| commit | 079d8037ab59ea13dcff1811c1e32884e7a01ae8 (patch) | |
| tree | c0adfeb7b53bd87a55bf9fc3d8c6404c9e3f2871 /src/command/server.rs | |
| parent | Fish importing (#234) (diff) | |
| download | atuin-079d8037ab59ea13dcff1811c1e32884e7a01ae8.zip | |
Enable help messages for command line arguments (#239)
Diffstat (limited to 'src/command/server.rs')
| -rw-r--r-- | src/command/server.rs | 4 |
1 files changed, 2 insertions, 2 deletions
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<String>, - #[structopt(about = "specify the port to bind", long, short)] + #[structopt(help = "specify the port to bind", long, short)] port: Option<u16>, }, } |
