aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-10-22 14:49:05 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2013-10-22 14:49:05 -0700
commit6ffa54f31fbf1a16293b724b714f29468dcdf52d (patch)
tree7c1e171f1b4f094881c05d67213aca7c608fbd84
parentf2259868052becbf38c05f0dfabee41fbaabf72e (diff)
parent63ba6654bc032c270a20035767a20837899b82bc (diff)
downloadcryptography-6ffa54f31fbf1a16293b724b714f29468dcdf52d.tar.gz
cryptography-6ffa54f31fbf1a16293b724b714f29468dcdf52d.tar.bz2
cryptography-6ffa54f31fbf1a16293b724b714f29468dcdf52d.zip
Merge pull request #165 from dreid/proper-returns
Don't try to fit the type into the :return: declaration.
-rw-r--r--docs/primitives/symmetric-encryption.rst8
1 files changed, 6 insertions, 2 deletions
diff --git a/docs/primitives/symmetric-encryption.rst b/docs/primitives/symmetric-encryption.rst
index 73d8ad37..9768246c 100644
--- a/docs/primitives/symmetric-encryption.rst
+++ b/docs/primitives/symmetric-encryption.rst
@@ -33,11 +33,15 @@ where the encrypter and decrypter both use the same key.
.. method:: encryptor()
- :return :class:`CipherContext`: encryption instance
+ :return: An encrypting
+ :class:`~cryptography.primitives.interfaces.CipherContext`
+ provider.
.. method:: decryptor()
- :return :class:`CipherContext`: decryption instance
+ :return: A decrypting
+ :class:`~cryptography.primitives.interfaces.CipherContext`
+ provider.
.. class:: cryptography.primitives.interfaces.CipherContext()