aboutsummaryrefslogtreecommitdiffstats
path: root/docs/hazmat/primitives/symmetric-encryption.rst
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2017-12-29 11:09:30 -0500
committerPaul Kehrer <paul.l.kehrer@gmail.com>2017-12-29 10:09:30 -0600
commitc0c70fb78df67834f0912e0af95087cf93bb31ec (patch)
tree4c9622f670285c4dbbd3c332ab62d44298431ccd /docs/hazmat/primitives/symmetric-encryption.rst
parent0ed80b467df9565aa06ff79130f121effe0bd82a (diff)
downloadcryptography-c0c70fb78df67834f0912e0af95087cf93bb31ec.tar.gz
cryptography-c0c70fb78df67834f0912e0af95087cf93bb31ec.tar.bz2
cryptography-c0c70fb78df67834f0912e0af95087cf93bb31ec.zip
grammar nit, use a comma here (#4066)
Diffstat (limited to 'docs/hazmat/primitives/symmetric-encryption.rst')
-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 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``.