Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add into_inner() to FrameDecoder #56

Merged
merged 3 commits into from
Sep 3, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
compress: correct spelling error in into_inner docstring
james-rms committed Aug 31, 2022
commit a099322c94d0583633a6f60453f442f2730abb2b
2 changes: 1 addition & 1 deletion src/frame/compress.rs
Original file line number Diff line number Diff line change
@@ -151,7 +151,7 @@ impl<W: io::Write> FrameEncoder<W> {
}

/// Returns the underlying writer _without_ flushing the stream.
/// This may lave the output in an unfinished state.
/// This may leave the output in an unfinished state.
pub fn into_inner(self) -> W {
self.w
}