Skip to content

Commit f7d9485

Browse files
thestingergraydon
authored andcommitted
indentation fix
1 parent 3fe6faa commit f7d9485

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libstd/treemap.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,8 +168,8 @@ impl <K: Ord, V> TreeMapIterator<K, V> {
168168
while self.stack.is_not_empty() || self.node.is_some() {
169169
match *self.node {
170170
Some(ref x) => {
171-
self.stack.push(x);
172-
self.node = &x.left;
171+
self.stack.push(x);
172+
self.node = &x.left;
173173
}
174174
None => {
175175
let res = self.stack.pop();

0 commit comments

Comments
 (0)