diff options
| author | Xavientois <joshua.rampersad@hotmail.com> | 2021-01-15 19:43:52 -0500 |
|---|---|---|
| committer | Xavientois <joshua.rampersad@hotmail.com> | 2021-01-31 08:31:35 -0500 |
| commit | 442de9ac4531cc31955b62fbbebf80d2b99b4bb0 (patch) | |
| tree | 526afaff3cc03187dca702dd568add2fddcb9ebb /library/std/src/io | |
| parent | 7e56637c749c4427ce0456022ea84e8393e5b0f7 (diff) | |
| download | rust-442de9ac4531cc31955b62fbbebf80d2b99b4bb0.tar.gz rust-442de9ac4531cc31955b62fbbebf80d2b99b4bb0.zip | |
Fix semicolon
Diffstat (limited to 'library/std/src/io')
| -rw-r--r-- | library/std/src/io/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/io/mod.rs b/library/std/src/io/mod.rs index 018fe1c52bf..e9c99e5a627 100644 --- a/library/std/src/io/mod.rs +++ b/library/std/src/io/mod.rs @@ -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 |
