Skip to content

Commit f0a7e8f

Browse files
authored
Fix a few spelling mistakes
1 parent ac2f3fa commit f0a7e8f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/librustc/mir/traversal.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use super::*;
44

55
/// Preorder traversal of a graph.
66
///
7-
/// Preorder traversal is when each node is visited before an of it's
7+
/// Preorder traversal is when each node is visited before any of its
88
/// successors
99
///
1010
/// ```text
@@ -82,7 +82,7 @@ impl<'a, 'tcx> Iterator for Preorder<'a, 'tcx> {
8282

8383
/// Postorder traversal of a graph.
8484
///
85-
/// Postorder traversal is when each node is visited after all of it's
85+
/// Postorder traversal is when each node is visited after all of its
8686
/// successors, except when the successor is only reachable by a back-edge
8787
///
8888
///

0 commit comments

Comments
 (0)