Fix semicolon

This commit is contained in:
Xavientois 2021-01-15 19:43:52 -05:00
parent 7e56637c74
commit 442de9ac45
1 changed files with 1 additions and 1 deletions

View File

@ -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