diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2015-02-24 10:47:21 -0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2015-02-24 10:47:21 -0800 |
commit | b7bf3d5c136fd4dbb8e5c4b42d064d963723cc6d (patch) | |
tree | faec738a299b0babd41c1b61c4a4bd20bff54d09 /docs/hazmat/primitives | |
parent | 4733b47c9a6da998f01aee77c0ffb8c3bb321f5c (diff) | |
download | cryptography-b7bf3d5c136fd4dbb8e5c4b42d064d963723cc6d.tar.gz cryptography-b7bf3d5c136fd4dbb8e5c4b42d064d963723cc6d.tar.bz2 cryptography-b7bf3d5c136fd4dbb8e5c4b42d064d963723cc6d.zip |
Fixed a syntax error in the docs
Diffstat (limited to 'docs/hazmat/primitives')
-rw-r--r-- | docs/hazmat/primitives/symmetric-encryption.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/hazmat/primitives/symmetric-encryption.rst b/docs/hazmat/primitives/symmetric-encryption.rst index 0f7e0377..19ae88bf 100644 --- a/docs/hazmat/primitives/symmetric-encryption.rst +++ b/docs/hazmat/primitives/symmetric-encryption.rst @@ -475,7 +475,7 @@ Interfaces ``AEADEncryptionContext`` provider. ``AEADCipherContext`` contains an additional method :meth:`authenticate_additional_data` for adding additional authenticated but unencrypted data (see note below). You should - call this before calls to ``update``. When you are done call `finalize`` + call this before calls to ``update``. When you are done call ``finalize`` to finish the operation. .. note:: |