Skip to content

Commit

Permalink
fix: remove Unpin from lines
Browse files Browse the repository at this point in the history
  • Loading branch information
nanoqsh committed Nov 4, 2024
1 parent 7aa7bd7 commit ed2cb87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/io.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1692,7 +1692,7 @@ pub trait AsyncBufReadExt: AsyncBufRead {
/// ```
fn lines(self) -> Lines<Self>
where
Self: Unpin + Sized,
Self: Sized,
{
Lines {
reader: self,
Expand Down

0 comments on commit ed2cb87

Please sign in to comment.