diff options
author | mxheller <max.a.heller@gmail.com> | 2020-11-29 10:37:44 -0500 |
---|---|---|
committer | mxheller <max.a.heller@gmail.com> | 2020-11-29 10:37:44 -0500 |
commit | 1dec65068ab68e2829d38f80664aec9ac3d7989f (patch) | |
tree | 16c30879b7b951ee08aac90ea7a30db003a73645 /openssl/src/x509/store.rs | |
parent | 45107c21cd3405c571c175d332243a001d9268a1 (diff) | |
download | rust-openssl-1dec65068ab68e2829d38f80664aec9ac3d7989f.zip |
remove 'as of 1.0.0' comment
Diffstat (limited to 'openssl/src/x509/store.rs')
-rw-r--r-- | openssl/src/x509/store.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/openssl/src/x509/store.rs b/openssl/src/x509/store.rs index d6838c15..5ae62321 100644 --- a/openssl/src/x509/store.rs +++ b/openssl/src/x509/store.rs @@ -126,9 +126,9 @@ pub struct HashDir; impl X509Lookup<HashDir> { /// Lookup method that loads certificates and CRLs on demand and caches - /// them in memory once they are loaded. As of OpenSSL 1.0.0, it also - /// checks for newer CRLs upon each lookup, so that newer CRLs are used as - /// soon as they appear in the directory. + /// them in memory once they are loaded. It also checks for newer CRLs upon + /// each lookup, so that newer CRLs are used as soon as they appear in the + /// directory. /// /// This corresponds to [`X509_LOOKUP_hash_dir`]. /// |