aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCharles Y <Yoshi325@users.noreply.github.com>2020-04-29 15:41:56 -0400
committerGitHub <noreply@github.com>2020-04-29 14:41:56 -0500
commite05795897c7b723e134da5085fd60fa710fb5081 (patch)
treecc012b64215a7da72c38c08ed49c6ebeb0577d3d
parent7dcd284c6e586aa0658016902be7eb612dacb7cb (diff)
downloadcryptography-e05795897c7b723e134da5085fd60fa710fb5081.tar.gz
cryptography-e05795897c7b723e134da5085fd60fa710fb5081.tar.bz2
cryptography-e05795897c7b723e134da5085fd60fa710fb5081.zip
Update symmetric-encryption.rst (#5240)
mis-named parameter
-rw-r--r--docs/hazmat/primitives/symmetric-encryption.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/hazmat/primitives/symmetric-encryption.rst b/docs/hazmat/primitives/symmetric-encryption.rst
index 9eacc5b4..46f0786d 100644
--- a/docs/hazmat/primitives/symmetric-encryption.rst
+++ b/docs/hazmat/primitives/symmetric-encryption.rst
@@ -44,7 +44,7 @@ it fits your needs before implementing anything using this module.**
>>> decryptor.update(ct) + decryptor.finalize()
b'a secret message'
- :param algorithms: A
+ :param algorithm: A
:class:`~cryptography.hazmat.primitives.ciphers.CipherAlgorithm`
instance such as those described
:ref:`below <symmetric-encryption-algorithms>`.