summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNora Widdecke <nora@sequoia-pgp.org>2020-07-14 12:19:53 +0200
committerJustus Winter <justus@sequoia-pgp.org>2021-01-05 14:31:25 +0100
commitc6a81d92b35efb8175139b177ee5fadcf5ba6a24 (patch)
tree1cad751d9d61eceea5ba245c2b2394828fda63e8
parent426e5d38ef0113961a8e1b5ca76d9cf575ac5aee (diff)
tool: Fix grammar.
-rw-r--r--sq/src/sq-usage.rs4
-rw-r--r--sq/src/sq_cli.rs4
2 files changed, 4 insertions, 4 deletions
diff --git a/sq/src/sq-usage.rs b/sq/src/sq-usage.rs
index 1c968e48..71ac8053 100644
--- a/sq/src/sq-usage.rs
+++ b/sq/src/sq-usage.rs
@@ -57,7 +57,7 @@
//! OPTIONS:
//! -o, --output <FILE> Sets the output file to use
//! --secret-key-file <TSK-FILE>... Secret key to decrypt with, given as a file (can be given multiple times)
-//! --sender-cert-file <CERT-FILE>... The sender's certificate verify signatures with, given as a file (can be
+//! --sender-cert-file <CERT-FILE>... The sender's certificate to verify signatures with, given as a file (can be
//! given multiple times)
//! -n, --signatures <N> The number of valid signatures required. Default: 0
//!
@@ -144,7 +144,7 @@
//! OPTIONS:
//! --detached <SIG-FILE> Verifies a detached signature
//! -o, --output <FILE> Sets the output file to use
-//! --sender-cert-file <CERT-FILE>... The sender's certificate verify signatures with, given as a file (can be
+//! --sender-cert-file <CERT-FILE>... The sender's certificate to verify signatures with, given as a file (can be
//! given multiple times)
//! -n, --signatures <N> The number of valid signatures required. Default: 0
//!
diff --git a/sq/src/sq_cli.rs b/sq/src/sq_cli.rs
index a050aa45..316126e0 100644
--- a/sq/src/sq_cli.rs
+++ b/sq/src/sq_cli.rs
@@ -58,7 +58,7 @@ pub fn build() -> App<'static, 'static> {
.takes_value(true)
.value_name("CERT-FILE")
.number_of_values(1)
- .help("The sender's certificate verify signatures \
+ .help("The sender's certificate to verify signatures \
with, given as a file \
(can be given multiple times)"))
.arg(Arg::with_name("secret-key-file")
@@ -217,7 +217,7 @@ pub fn build() -> App<'static, 'static> {
.takes_value(true)
.value_name("CERT-FILE")
.number_of_values(1)
- .help("The sender's certificate verify signatures \
+ .help("The sender's certificate to verify signatures \
with, given as a file \
(can be given multiple times)")))
.subcommand(SubCommand::with_name("enarmor")