diff options
| author | David Weinstein <[email protected]> | 2016-08-16 23:56:37 -0400 |
|---|---|---|
| committer | David Weinstein <[email protected]> | 2016-08-17 01:23:54 -0400 |
| commit | 90c42fc026bb2be02da93f5b73e781e854e3544c (patch) | |
| tree | 77dcec96ff286b09b650c4f88cd05dc18b3e5c20 /openssl/src | |
| parent | Add x509_validity feature to travis tests (diff) | |
| download | rust-openssl-90c42fc026bb2be02da93f5b73e781e854e3544c.tar.xz rust-openssl-90c42fc026bb2be02da93f5b73e781e854e3544c.zip | |
Fix docs
Diffstat (limited to 'openssl/src')
| -rw-r--r-- | openssl/src/x509/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openssl/src/x509/mod.rs b/openssl/src/x509/mod.rs index 649dfdc2..12a122b2 100644 --- a/openssl/src/x509/mod.rs +++ b/openssl/src/x509/mod.rs @@ -433,7 +433,7 @@ impl<'a> X509Ref<'a> { } } - /// Returns certificate Not Before validity period. + /// Returns certificate Not After validity period. /// Requires the `x509_expiry` feature. #[cfg(feature = "x509_expiry")] pub fn not_after(&self) -> Asn1TimeRef { @@ -444,7 +444,7 @@ impl<'a> X509Ref<'a> { } } - /// Returns certificate Not After validity period. + /// Returns certificate Not Before validity period. /// Requires the `x509_expiry` feature. #[cfg(feature = "x509_expiry")] pub fn not_before(&self) -> Asn1TimeRef { |