From 146b12cb9720e336ffaadad82f2b77020c1ab11a Mon Sep 17 00:00:00 2001 From: Philip Ye Date: Tue, 14 Feb 2023 17:05:19 +1300 Subject: [PATCH] Fix a typo in doc for write::GzDecoder --- src/gz/write.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gz/write.rs b/src/gz/write.rs index 4a72ed44..b4186a1f 100644 --- a/src/gz/write.rs +++ b/src/gz/write.rs @@ -169,7 +169,7 @@ impl Drop for GzEncoder { /// A gzip streaming decoder /// -/// This structure exposes a [`Write`] interface that will emit compressed data +/// This structure exposes a [`Write`] interface that will emit uncompressed data /// to the underlying writer `W`. /// /// [`Write`]: https://doc.rust-lang.org/std/io/trait.Write.html