From 75a6e0e47db672987eed0cef48dc3860e8b153cf Mon Sep 17 00:00:00 2001 From: remigranotier <42846930+remigranotier@users.noreply.github.com> Date: Thu, 20 Apr 2023 16:59:03 +0200 Subject: [PATCH] [Documentation] fixed X509Crl and X509Revoked description in doc Pardon my previous MR, Ctrl+F tricked me... This one fixes (for good) descriptions for both X509Crl and X509Revoked --- openssl/src/x509/mod.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/openssl/src/x509/mod.rs b/openssl/src/x509/mod.rs index 971fb982a6..030770587e 100644 --- a/openssl/src/x509/mod.rs +++ b/openssl/src/x509/mod.rs @@ -1545,9 +1545,9 @@ foreign_type_and_impl_send_sync! { type CType = ffi::X509_REVOKED; fn drop = ffi::X509_REVOKED_free; - /// An `X509` certificate revocation list. + /// An `X509` certificate revocation status. pub struct X509Revoked; - /// Reference to `X509Crl`. + /// Reference to `X509Revoked`. pub struct X509RevokedRef; } @@ -1659,7 +1659,7 @@ foreign_type_and_impl_send_sync! { type CType = ffi::X509_CRL; fn drop = ffi::X509_CRL_free; - /// An `X509` certificate request. + /// An `X509` certificate revocation list. pub struct X509Crl; /// Reference to `X509Crl`. pub struct X509CrlRef;