From 9cbfbfb7570d87a74e9ab3cf163f3c1e3f2dda74 Mon Sep 17 00:00:00 2001 From: Lukas Velikov Date: Mon, 28 Oct 2024 15:04:02 -0400 Subject: [PATCH] Clarify docs for certificate::CertificateParams::serialize_request --- rcgen/src/certificate.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rcgen/src/certificate.rs b/rcgen/src/certificate.rs index dd62a362..68ec0f67 100644 --- a/rcgen/src/certificate.rs +++ b/rcgen/src/certificate.rs @@ -495,7 +495,7 @@ impl CertificateParams { /// /// The constructed CSR will contain attributes based on the certificate parameters, /// and include the subject public key information from `subject_key`. Additionally, - /// the CSR will be self-signed using the subject key. + /// the CSR will be signed using the subject key. /// /// Note that subsequent invocations of `serialize_request()` will not produce the exact /// same output.