diff options
author | Jörn Heissler <joernheissler@users.noreply.github.com> | 2019-09-17 10:42:30 (GMT) |
---|---|---|
committer | Stéphane Wirtel <stephane@wirtel.be> | 2019-09-17 10:42:30 (GMT) |
commit | 219fb9d65ef7e5363eccc9dde0988bb085db1c86 (patch) | |
tree | 9959a716f7a02fe89a1a7495a1dfbb9cfcdb4c9b | |
parent | 46b0b81220a23bc4aee5ba3ba67e8cf1b5df7960 (diff) | |
download | cpython-219fb9d65ef7e5363eccc9dde0988bb085db1c86.zip cpython-219fb9d65ef7e5363eccc9dde0988bb085db1c86.tar.gz cpython-219fb9d65ef7e5363eccc9dde0988bb085db1c86.tar.bz2 |
Doc: Fix grammar/spelling in ssl.VERIFY_CRL_CHECK_LEAF docs (GH-16221)
-rw-r--r-- | Doc/library/ssl.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst index b7af496..923bd87 100644 --- a/Doc/library/ssl.rst +++ b/Doc/library/ssl.rst @@ -613,9 +613,9 @@ Constants .. data:: VERIFY_CRL_CHECK_LEAF Possible value for :attr:`SSLContext.verify_flags`. In this mode, only the - peer cert is check but non of the intermediate CA certificates. The mode + peer cert is checked but none of the intermediate CA certificates. The mode requires a valid CRL that is signed by the peer cert's issuer (its direct - ancestor CA). If no proper has been loaded + ancestor CA). If no proper CRL has has been loaded with :attr:`SSLContext.load_verify_locations`, validation will fail. .. versionadded:: 3.4 |