Skip to content

Commit

Permalink
applies copies of minor improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron committed Jul 20, 2023
1 parent 7cfdd4e commit a232574
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/gz/read.rs
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ impl<R: Read + Write> Write for GzDecoder<R> {
///
/// 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.
Expand Down
2 changes: 1 addition & 1 deletion src/gz/write.rs
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ impl<W: Read + Write> Read for GzDecoder<W> {
///
/// 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.
Expand Down

0 comments on commit a232574

Please sign in to comment.