Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
KillingSpark committed Dec 23, 2024
1 parent d7643f4 commit 1ed0ec8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/io_nostd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,10 @@ pub trait Read {
Ok(())
}

fn take(self, limit: u64) -> Take<Self> where Self: Sized {
fn take(self, limit: u64) -> Take<Self>
where
Self: Sized,
{
Take { inner: self, limit }
}
}
Expand Down

0 comments on commit 1ed0ec8

Please sign in to comment.