Skip to content

Commit 3588469

Browse files
committed
Trailing whitespace? What trailing whitespace?
There is no trailing whitespace in Ba Sing Se.
1 parent 7e9ff16 commit 3588469

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/libcore/iter.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -3041,7 +3041,7 @@ impl<T> Iterator for Empty<T> {
30413041
fn next(&mut self) -> Option<T> {
30423042
None
30433043
}
3044-
3044+
30453045
fn size_hint(&self) -> (usize, Option<usize>){
30463046
(0, Some(0))
30473047
}
@@ -3057,7 +3057,7 @@ impl<T> DoubleEndedIterator for Empty<T> {
30573057
#[unstable(feature="iter_empty", reason = "new addition")]
30583058
impl<T> ExactSizeIterator for Empty<T> {
30593059
fn len(&self) -> usize {
3060-
0
3060+
0
30613061
}
30623062
}
30633063

@@ -3099,7 +3099,7 @@ impl<T> Iterator for Once<T> {
30993099
self.inner.next()
31003100
}
31013101

3102-
fn size_hint(&self) -> (usize, Option<usize>) {
3102+
fn size_hint(&self) -> (usize, Option<usize>) {
31033103
self.inner.size_hint()
31043104
}
31053105
}

0 commit comments

Comments
 (0)