aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-08-08 19:05:18 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2013-08-08 19:05:18 -0700
commitb12f76e1a38b8506f8d9884b9928b1cbce6d1509 (patch)
tree0ef00f86babb873199ea8c28e3b40b01275343b4
parent51758ff8f09a054af9300ce96c6ec119ff92df4d (diff)
downloadcryptography-b12f76e1a38b8506f8d9884b9928b1cbce6d1509.tar.gz
cryptography-b12f76e1a38b8506f8d9884b9928b1cbce6d1509.tar.bz2
cryptography-b12f76e1a38b8506f8d9884b9928b1cbce6d1509.zip
Typo fix
-rw-r--r--docs/primitives/symmetric-encryption.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/primitives/symmetric-encryption.rst b/docs/primitives/symmetric-encryption.rst
index 779f087a..fe074f3e 100644
--- a/docs/primitives/symmetric-encryption.rst
+++ b/docs/primitives/symmetric-encryption.rst
@@ -7,8 +7,8 @@ where the encrypter and decrypter both use the same key.
.. class:: cryptography.primitives.block.BlockCipher(cipher, mode)
Block ciphers work by encrypting content in chunks, often 64- or 128-bits.
- Theycombine an underlying algorithm (such as AES), with a mode (such as CBC,
- CTR, or GCM). A simple example of encrypting content with AES is:
+ They combine an underlying algorithm (such as AES), with a mode (such as
+ CBC, CTR, or GCM). A simple example of encrypting content with AES is:
.. code-block:: pycon