summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Paul Calderone <exarkun@twistedmatrix.com>2015-01-18 15:27:34 -0500
committerStephen Holsapple <sholsapp@gmail.com>2015-01-30 17:49:38 -0800
commitc1a15a44e3fd64aa4a8608aab922f71aeb625e27 (patch)
tree8551048fa5e502abca0b7e7d942d6cef577fc640
parent093d9fee1af2d0959271867dfa34cf123dad7401 (diff)
downloadpyopenssl-c1a15a44e3fd64aa4a8608aab922f71aeb625e27.tar.gz
Consistent a/an for x509.
-rw-r--r--OpenSSL/crypto.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSSL/crypto.py b/OpenSSL/crypto.py
index 0272dd6..28a1589 100644
--- a/OpenSSL/crypto.py
+++ b/OpenSSL/crypto.py
@@ -1392,12 +1392,12 @@ class X509StoreContext(object):
"""
An X.509 store context.
- A :py:class:`X509StoreContext` is used to verify a certificate in some
+ An :py:class:`X509StoreContext` is used to verify a certificate in some
context in conjunction with :py:func:`verify_cert`. The information
encapsulated in this object includes, but is not limited to, a set of
trusted certificates, verification parameters and revoked certificates.
- :param store: A :py:class:`X509Store` of trusted certificates.
+ :param store: An :py:class:`X509Store` of trusted certificates.
:param cert: An :py:class:`X509` certificate to be validated during a
subsequent call to :py:func:`verify_cert`.
"""