aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-12-27 11:19:32 -0800
committerAlex Gaynor <alex.gaynor@gmail.com>2014-12-27 11:19:32 -0800
commitfecf6447ab12d963c1638e4588e27a80e85a686c (patch)
treefaa53c9c6658fe554eabf661cc16998412df75a4 /docs
parenta25445ffadd0cbb36382860866a90b8ccf5f3790 (diff)
downloadcryptography-fecf6447ab12d963c1638e4588e27a80e85a686c.tar.gz
cryptography-fecf6447ab12d963c1638e4588e27a80e85a686c.tar.bz2
cryptography-fecf6447ab12d963c1638e4588e27a80e85a686c.zip
Fixed some grammar in the docs
Diffstat (limited to 'docs')
-rw-r--r--docs/hazmat/backends/interfaces.rst20
1 files changed, 10 insertions, 10 deletions
diff --git a/docs/hazmat/backends/interfaces.rst b/docs/hazmat/backends/interfaces.rst
index 8620d9a7..e9ee9467 100644
--- a/docs/hazmat/backends/interfaces.rst
+++ b/docs/hazmat/backends/interfaces.rst
@@ -271,8 +271,8 @@ A specific ``backend`` may provide one or more of these interfaces.
``private_exponent``, ``public_exponent``, or ``modulus`` do not
match the bounds specified in :rfc:`3447`.
- :raises cryptography.exceptions.UnsupportedAlgorithm: This raised when
- any backend specific criteria are not met.
+ :raises cryptography.exceptions.UnsupportedAlgorithm: This is raised
+ when any backend specific criteria are not met.
.. method:: load_rsa_public_numbers(numbers)
@@ -286,8 +286,8 @@ A specific ``backend`` may provide one or more of these interfaces.
``public_exponent`` or ``modulus`` do not match the bounds
specified in :rfc:`3447`.
- :raises cryptography.exceptions.UnsupportedAlgorithm: This raised when
- any backend specific criteria are not met.
+ :raises cryptography.exceptions.UnsupportedAlgorithm: This is raised
+ when any backend specific criteria are not met.
.. class:: DSABackend
@@ -368,8 +368,8 @@ A specific ``backend`` may provide one or more of these interfaces.
:returns: A provider of
:class:`~cryptography.hazmat.primitives.interfaces.DSAParameters`.
- :raises cryptography.exceptions.UnsupportedAlgorithm: This raised when
- any backend specific criteria are not met.
+ :raises cryptography.exceptions.UnsupportedAlgorithm: This is raised
+ when any backend specific criteria are not met.
.. method:: load_dsa_private_numbers(numbers)
@@ -379,8 +379,8 @@ A specific ``backend`` may provide one or more of these interfaces.
:returns: A provider of
:class:`~cryptography.hazmat.primitives.interfaces.DSAPrivateKey`.
- :raises cryptography.exceptions.UnsupportedAlgorithm: This raised when
- any backend specific criteria are not met.
+ :raises cryptography.exceptions.UnsupportedAlgorithm: This is raised
+ when any backend specific criteria are not met.
.. method:: load_dsa_public_numbers(numbers)
@@ -390,8 +390,8 @@ A specific ``backend`` may provide one or more of these interfaces.
:returns: A provider of
:class:`~cryptography.hazmat.primitives.interfaces.DSAPublicKey`.
- :raises cryptography.exceptions.UnsupportedAlgorithm: This raised when
- any backend specific criteria are not met.
+ :raises cryptography.exceptions.UnsupportedAlgorithm: This is raised
+ when any backend specific criteria are not met.
.. class:: EllipticCurveBackend