Skip to content

Commit

Permalink
Remove Unpin bound from lines (#113)
Browse files Browse the repository at this point in the history
  • Loading branch information
nanoqsh authored Nov 4, 2024
1 parent 7aa7bd7 commit bf22c0e
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 bf22c0e

Please sign in to comment.