From f095a892b99e8c999a88959ed8290a0f710f4dae Mon Sep 17 00:00:00 2001 From: Marc Hartmayer Date: Fri, 29 Nov 2024 12:26:50 +0100 Subject: [PATCH] rust/utils: Improve documentation wording MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reviewed-by: Steffen Eiden Signed-off-by: Marc Hartmayer Signed-off-by: Jan Höppner --- rust/utils/src/cli.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rust/utils/src/cli.rs b/rust/utils/src/cli.rs index 774530ff..fccbba75 100644 --- a/rust/utils/src/cli.rs +++ b/rust/utils/src/cli.rs @@ -25,7 +25,7 @@ use std::process::ExitCode; pub struct CertificateOptions { /// Use FILE as a host-key document. /// - /// Can be specified multiple times and must be used at least once. + /// Can be specified multiple times and must be specified at least once. #[arg( short = 'k', long = "host-key-document", @@ -60,7 +60,7 @@ pub struct CertificateOptions { )] pub certs: Vec, - /// Use FILE as a certificate revocation list. + /// Use FILE as a certificate revocation list (CRL). /// /// The list is used to check whether a certificate of the chain of /// trust is revoked. Specify this option multiple times to use multiple CRLs.