about summary refs log tree commit diff
diff options
context:
space:
mode:
authorXavientois <joshua.rampersad@hotmail.com>2021-01-15 17:52:55 -0500
committerXavientois <joshua.rampersad@hotmail.com>2021-01-31 08:31:34 -0500
commit5f60a3048ed0d6b2b56e253769fbd6593ccb1d71 (patch)
tree5d097a8368998660af521f2653bc4d9ed4a65faa
parent260a270f7c531a3b8f951b69c9e793e3afd67c89 (diff)
downloadrust-5f60a3048ed0d6b2b56e253769fbd6593ccb1d71.tar.gz
rust-5f60a3048ed0d6b2b56e253769fbd6593ccb1d71.zip
Fix incorrect token
-rw-r--r--library/std/src/io/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/io/mod.rs b/library/std/src/io/mod.rs
index cd54b8cc569..53da2440945 100644
--- a/library/std/src/io/mod.rs
+++ b/library/std/src/io/mod.rs
@@ -2495,7 +2495,7 @@ trait SizeHint {
 }
 
 #[stable(feature = "bufreader_size_hint", since = "1.51.0")]
-impl<T> SizeHint for T;
+impl<T> SizeHint for T {}
 
 #[stable(feature = "bufreader_size_hint", since = "1.51.0")]
 impl<T> SizeHint for BufReader<T> {