chore: fix some minor typos in the comments (#7785)

Signed-off-by: xibeiyoumian <[email protected]>
This commit is contained in:
xibeiyoumian
2025-12-23 20:24:13 +08:00
committed by GitHub
parent 08f40652aa
commit 5b91709edf
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -83,7 +83,7 @@ where
#[inline]
fn size_hint(&self) -> (usize, Option<usize>) {
if let Some(inner) = &self.inner {
// We always return +1 because when there's stream there's atleast one more item.
// We always return +1 because when there's a stream there's at least one more item.
let (l, u) = inner.size_hint();
(l.saturating_add(1), u.and_then(|u| u.checked_add(1)))
} else {