Skip to content

Commit

Permalink
Update help messages
Browse files Browse the repository at this point in the history
  • Loading branch information
onur committed Aug 6, 2016
1 parent 5f6e36d commit 6445906
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ You can get a list of all available options with `letsencrypt-rs --help`:

```
letsencrypt-rs 0.1.0
Easy to use Let's Encrypt client to issue and renew TLS certs
Easy to use Let's Encrypt client to issue, renew and revoke TLS certificates
USAGE:
letsencrypt-rs [FLAGS] [OPTIONS]
Expand All @@ -99,9 +99,9 @@ FLAGS:
OPTIONS:
-B, --bit-length <BIT_LENGHT> Bit length for CSR. Default is 2048.
-D, --domain <DOMAIN> Name of domain for identification.
-T, --domain-crt <DOMAIN_CRT> Path of signed domain certificate. This is required
for revoke certificate.
-C, --domain-csr <DOMAIN_CSR> Path of domain certificate signing request.
-T, --domain-crt <DOMAIN_CRT> Path to signed domain certificate. This is required
to revoke a certificate.
-C, --domain-csr <DOMAIN_CSR> Path to domain certificate signing request.
--domain-key <DOMAIN_KEY_PATH> Domain private key path to use it in CSR
generation.
-E, --email <EMAIL> Contact email address (optional).
Expand Down
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ fn main() {
.long("email")
.takes_value(true))
.arg(Arg::with_name("DOMAIN_CSR")
.help("Path of domain certificate signing request.")
.help("Path to domain certificate signing request.")
.short("C")
.long("domain-csr")
.takes_value(true))
.arg(Arg::with_name("DOMAIN_CRT")
.help("Path of signed domain certificate. This is required for revoke certificate.")
.help("Path to signed domain certificate. This is required to revoke a certificate.")
.long("domain-crt")
.short("T")
.takes_value(true))
Expand Down

0 comments on commit 6445906

Please sign in to comment.