update docs to reflect new encryptor API
diff --git a/docs/primitives/symmetric-encryption.rst b/docs/primitives/symmetric-encryption.rst
index 7899e67..4f40478 100644
--- a/docs/primitives/symmetric-encryption.rst
+++ b/docs/primitives/symmetric-encryption.rst
@@ -21,7 +21,8 @@
 
         >>> from cryptography.primitives.block import BlockCipher, ciphers, modes
         >>> cipher = BlockCipher(ciphers.AES(key), modes.CBC(iv))
-        >>> cipher.encrypt(b"a secret message") + cipher.finalize()
+        >>> context = cipher.encryptor()
+        >>> context.update(b"a secret message") + context.finalize()
         '...'
 
     :param cipher: One of the ciphers described below.