Skip to content

Commit 442de9a

Browse files
committed
Fix semicolon
1 parent 7e56637 commit 442de9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/std/src/io/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2481,7 +2481,7 @@ impl<R: Read + SizeHint> Iterator for Bytes<R> {
24812481

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

24862486
fn upper_bound(&self) -> Option<usize> {
24872487
None

0 commit comments

Comments
 (0)