Skip to content

Commit

Permalink
Fix semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
Xavientois committed Jan 31, 2021
1 parent 7e56637 commit 442de9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/std/src/io/mod.rs
Expand Up @@ -2481,7 +2481,7 @@ impl<R: Read + SizeHint> Iterator for Bytes<R> {

#[stable(feature = "bufreader_size_hint", since = "1.51.0")]
trait SizeHint {
fn lower_bound(&self) -> usize {
fn lower_bound(&self) -> usize;

fn upper_bound(&self) -> Option<usize> {
None
Expand Down

0 comments on commit 442de9a

Please sign in to comment.