From a2325748912d02e3e1d80d6529aa786297ab768e Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Thu, 20 Jul 2023 08:31:20 +0200 Subject: [PATCH] applies copies of minor improvements --- src/gz/read.rs | 2 +- src/gz/write.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gz/read.rs b/src/gz/read.rs index 4d10c4a8..fbd34ccd 100644 --- a/src/gz/read.rs +++ b/src/gz/read.rs @@ -182,7 +182,7 @@ impl Write for GzDecoder { /// /// A gzip file consists of a series of "members" concatenated one after another. /// MultiGzDecoder decodes all members of a file, while [GzDecoder] will only decode -/// the first one member. MultiGzDecoder is preferable in most cases. +/// the first member. MultiGzDecoder is preferable in most cases. /// /// This structure exposes a [`Read`] interface that will consume all gzip members /// from the underlying reader and emit uncompressed data. diff --git a/src/gz/write.rs b/src/gz/write.rs index 8f84ee73..b2b7be5e 100644 --- a/src/gz/write.rs +++ b/src/gz/write.rs @@ -377,7 +377,7 @@ impl Read for GzDecoder { /// /// A gzip file consists of a series of "members" concatenated one after another. /// MultiGzDecoder decodes all members of a file, while [GzDecoder] will only decode -/// the first one member. MultiGzDecoder is preferable in most cases. +/// the first member. MultiGzDecoder is preferable in most cases. /// /// This structure exposes a [`Write`] interface that will consume all gzip members /// from the written buffers and write uncompressed data to the writer.