aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/manual/filters.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/manual/filters.rst b/doc/manual/filters.rst
index cb8f010b6..e8016eac7 100644
--- a/doc/manual/filters.rst
+++ b/doc/manual/filters.rst
@@ -209,7 +209,7 @@ a case where that is useful::
Pipe pipe(new Base64_Decoder,
get_cipher("AES-128", key, iv, DECRYPTION),
new Fork(
- 0, // this message gets ciphertext
+ 0, // this message gets plaintext
new MAC_Filter("HMAC(SHA-1)", mac_key)
)
);