Skip to content

Commit f28dd81

Browse files
committed
Fix incorrect token
1 parent 3358674 commit f28dd81

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
@@ -2492,7 +2492,7 @@ trait SizeHint {
24922492
}
24932493

24942494
#[stable(feature = "bufreader_size_hint", since = "1.51.0")]
2495-
impl<T> SizeHint for T;
2495+
impl<T> SizeHint for T {}
24962496

24972497
#[stable(feature = "bufreader_size_hint", since = "1.51.0")]
24982498
impl<T> SizeHint for BufReader<T> {

0 commit comments

Comments
 (0)