Skip to content

Commit 3ad20e5

Browse files
committed
Fix semicolon
1 parent d4704c7 commit 3ad20e5

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
@@ -2478,7 +2478,7 @@ impl<R: Read + SizeHint> Iterator for Bytes<R> {
24782478

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

24832483
fn upper_bound(&self) -> Option<usize> {
24842484
None

0 commit comments

Comments
 (0)