Fixed example
diff --git a/docs/primitives/symmetric-encryption.rst b/docs/primitives/symmetric-encryption.rst
index 05aea0f..0812f6b 100644
--- a/docs/primitives/symmetric-encryption.rst
+++ b/docs/primitives/symmetric-encryption.rst
@@ -13,7 +13,7 @@
     .. code-block:: pycon
 
         >>> from cryptography.primitives.block import BlockCipher, ciphers, modes
-        >>> cipher = BlockCipher(cipher.AES(key), mode.CBC(iv))
+        >>> cipher = BlockCipher(ciphers.AES(key), modes.CBC(iv))
         >>> cipher.encrypt("my secret message") + cipher.finalize()
         # The ciphertext
         [...]