Skip to content

Commit 12a7543

Browse files
committed
fix test indentation
1 parent 3a6f77f commit 12a7543

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/node_mut.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2584,7 +2584,7 @@ where
25842584
///
25852585
/// let mut root = tree.root_mut();
25862586
/// for (l, leaf) in root.leaves_mut::<Bfs>().enumerate() {
2587-
/// *leaf += 100 * l;
2587+
/// *leaf += 100 * l;
25882588
/// }
25892589
///
25902590
/// let bfs_leaves: Vec<_> = tree.root().leaves::<Bfs>().copied().collect();
@@ -2594,7 +2594,7 @@ where
25942594
///
25952595
/// let mut n3 = tree.node_mut(&id3);
25962596
/// for (l, leaf) in n3.leaves_mut::<PostOrder>().enumerate() {
2597-
/// *leaf -= 100 * l;
2597+
/// *leaf -= 100 * l;
25982598
/// }
25992599
///
26002600
/// let n3 = tree.node(&id3);

0 commit comments

Comments
 (0)