Skip to content

Commit 10fbbf6

Browse files
authored
Rollup merge of #68619 - gorilskij:master, r=varkor
Fix a few spelling mistakes
2 parents 8d3273c + f0a7e8f commit 10fbbf6

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)