summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2021-02-24 12:55:09 +0100
committerJustus Winter <justus@sequoia-pgp.org>2021-02-24 12:55:09 +0100
commitcfc31799e7a1351fe31be334b5ba367847b1bd56 (patch)
treeef554d7d905e7aa6b25b3ef0ac37d3cbbe5a66ed
parentb87bb05e338751c12df0522b141c43e40534ee05 (diff)
sq: Improve wording.
- See #677.
-rw-r--r--sq/src/sq-usage.rs5
-rw-r--r--sq/src/sq_cli.rs4
2 files changed, 4 insertions, 5 deletions
diff --git a/sq/src/sq-usage.rs b/sq/src/sq-usage.rs
index 6eef5394..a54c3288 100644
--- a/sq/src/sq-usage.rs
+++ b/sq/src/sq-usage.rs
@@ -160,9 +160,8 @@
//! Verifies signatures with CERT
//!
//! -n, --signatures <N>
-//! Sets the threshold of valid signatures to N. If this threshold is
-//! not reached, the message will not be considered verified. [default:
-//! 0]
+//! Sets the threshold of valid signatures to N. The message will only
+//! be considered verified if this threshold is reached. [default: 0]
//!
//! ARGS:
//! <FILE>
diff --git a/sq/src/sq_cli.rs b/sq/src/sq_cli.rs
index 6a0d9b86..d31d1ee0 100644
--- a/sq/src/sq_cli.rs
+++ b/sq/src/sq_cli.rs
@@ -100,8 +100,8 @@ $ sq decrypt ciphertext.pgp
.help("Sets the threshold of valid signatures to N")
.long_help(
"Sets the threshold of valid signatures to N. \
- If this threshold is not reached, the message \
- will not be considered verified."))
+ The message will only be considered \
+ verified if this threshold is reached."))
.arg(Arg::with_name("sender-cert-file")
.long("signer-cert").value_name("CERT")
.multiple(true).number_of_values(1)