aboutsummaryrefslogtreecommitdiffstats
path: root/docs/hazmat/backends
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2015-12-24 14:17:46 -0600
committerPaul Kehrer <paul.l.kehrer@gmail.com>2015-12-24 14:17:46 -0600
commit7a9607038678f876cdac33ad1b29ce07346cfaf7 (patch)
tree69fb7f719e39c80764409a6cb317ba8273bd73b1 /docs/hazmat/backends
parent1e63b8470ceb4abdada68b8fce03365fbcd37a2a (diff)
parent6b3184c97a3a8968ba47fff9d1bb6417fe13db5a (diff)
downloadcryptography-7a9607038678f876cdac33ad1b29ce07346cfaf7.tar.gz
cryptography-7a9607038678f876cdac33ad1b29ce07346cfaf7.tar.bz2
cryptography-7a9607038678f876cdac33ad1b29ce07346cfaf7.zip
Merge pull request #2566 from alex/better-language
Use clearer language in the backend interface docs.
Diffstat (limited to 'docs/hazmat/backends')
-rw-r--r--docs/hazmat/backends/interfaces.rst7
1 files changed, 3 insertions, 4 deletions
diff --git a/docs/hazmat/backends/interfaces.rst b/docs/hazmat/backends/interfaces.rst
index 442bd0de..ef7ba6ae 100644
--- a/docs/hazmat/backends/interfaces.rst
+++ b/docs/hazmat/backends/interfaces.rst
@@ -547,8 +547,8 @@ A specific ``backend`` may provide one or more of these interfaces.
:class:`~cryptography.hazmat.primitives.hashes.HashAlgorithm`
that will be used to generate the request signature.
- :returns: A new object with the
- :class:`~cryptography.x509.CertificateSigningRequest` interface.
+ :returns: A new instance of
+ :class:`~cryptography.x509.CertificateSigningRequest`.
.. method:: create_x509_certificate(builder, private_key, algorithm)
@@ -567,8 +567,7 @@ A specific ``backend`` may provide one or more of these interfaces.
:class:`~cryptography.hazmat.primitives.hashes.HashAlgorithm`
that will be used to generate the certificate signature.
- :returns: A new object with the
- :class:`~cryptography.x509.Certificate` interface.
+ :returns: A new instance of :class:`~cryptography.x509.Certificate`.
.. class:: DHBackend