diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2017-12-29 11:09:30 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2017-12-29 10:09:30 -0600 |
commit | c0c70fb78df67834f0912e0af95087cf93bb31ec (patch) | |
tree | 4c9622f670285c4dbbd3c332ab62d44298431ccd /docs/hazmat | |
parent | 0ed80b467df9565aa06ff79130f121effe0bd82a (diff) | |
download | cryptography-c0c70fb78df67834f0912e0af95087cf93bb31ec.tar.gz cryptography-c0c70fb78df67834f0912e0af95087cf93bb31ec.tar.bz2 cryptography-c0c70fb78df67834f0912e0af95087cf93bb31ec.zip |
grammar nit, use a comma here (#4066)
Diffstat (limited to 'docs/hazmat')
-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 aa577f07..126a9184 100644 --- a/docs/hazmat/primitives/symmetric-encryption.rst +++ b/docs/hazmat/primitives/symmetric-encryption.rst @@ -136,7 +136,7 @@ Algorithms concatenated with a block counter (encoded as a 32-bit little-endian). If you have a separate nonce and block counter you will need to concatenate it yourself before passing it. For - example if you have an initial block counter of 2 and a 96-bit + example, if you have an initial block counter of 2 and a 96-bit nonce the concatenated nonce would be ``struct.pack("<i", 2) + nonce``. |