Skip to content

Commit

Permalink
Merge pull request #1892 from remigranotier/patch-2
Browse files Browse the repository at this point in the history
[Documentation] fixed X509Crl and X509Revoked description in doc
  • Loading branch information
sfackler committed Apr 20, 2023
2 parents ac549b6 + 75a6e0e commit a882c69
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions openssl/src/x509/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit a882c69

Please sign in to comment.