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.