aboutsummaryrefslogtreecommitdiffstats
path: root/docs/hazmat/primitives
diff options
context:
space:
mode:
Diffstat (limited to 'docs/hazmat/primitives')
-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``.