summaryrefslogtreecommitdiffstats
path: root/openpgp
diff options
context:
space:
mode:
Diffstat (limited to 'openpgp')
-rw-r--r--openpgp/src/serialize/stream/writer/writer_deflate.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/openpgp/src/serialize/stream/writer/writer_deflate.rs b/openpgp/src/serialize/stream/writer/writer_deflate.rs
index 8dae14e9..db773e0b 100644
--- a/openpgp/src/serialize/stream/writer/writer_deflate.rs
+++ b/openpgp/src/serialize/stream/writer/writer_deflate.rs
@@ -6,7 +6,7 @@ use crate::Result;
use crate::types::CompressionLevel;
use super::{Generic, Message, BoxStack, Stackable, Cookie};
-/// ZIPing writer.
+/// ZIP compressing writer.
pub struct ZIP<'a, C: 'a> {
inner: Generic<DeflateEncoder<BoxStack<'a, C>>, C>,
}
@@ -74,7 +74,7 @@ impl<'a, C: 'a> Stackable<'a, C> for ZIP<'a, C> {
}
}
-/// ZLIBing writer.
+/// ZLIB compressing writer.
pub struct ZLIB<'a, C: 'a> {
inner: Generic<ZlibEncoder<BoxStack<'a, C>>, C>,
}