diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-01-26 12:03:05 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-01-26 12:03:05 -0600 |
commit | 359b94631c3380e2f86cf1f8e95090f7a350438f (patch) | |
tree | 0b8ad7a248420c152ef05c4c416d505109ee77f8 /docs/hazmat | |
parent | 6cf35f39677f04f5711ae062161858568cc14bcd (diff) | |
download | cryptography-359b94631c3380e2f86cf1f8e95090f7a350438f.tar.gz cryptography-359b94631c3380e2f86cf1f8e95090f7a350438f.tar.bz2 cryptography-359b94631c3380e2f86cf1f8e95090f7a350438f.zip |
methods don't have a type, they return things
Diffstat (limited to 'docs/hazmat')
-rw-r--r-- | docs/hazmat/primitives/interfaces.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/hazmat/primitives/interfaces.rst b/docs/hazmat/primitives/interfaces.rst index 02ba10e2..57a84120 100644 --- a/docs/hazmat/primitives/interfaces.rst +++ b/docs/hazmat/primitives/interfaces.rst @@ -112,7 +112,7 @@ Asymmetric Interfaces .. method:: public_key() - :type: :class:`~cryptography.hazmat.primitives.interfaces.RSAPublicKey` + :return: :class:`~cryptography.hazmat.primitives.interfaces.RSAPublicKey` An RSA public key object corresponding to the values of the private key. |