Skip to content

Commit

Permalink
Rollup merge of #68619 - gorilskij:master, r=varkor
Browse files Browse the repository at this point in the history
Fix a few spelling mistakes
  • Loading branch information
JohnTitor committed Jan 29, 2020
2 parents 8d3273c + f0a7e8f commit 10fbbf6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/librustc/mir/traversal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use super::*;

/// Preorder traversal of a graph.
///
/// Preorder traversal is when each node is visited before an of it's
/// Preorder traversal is when each node is visited before any of its
/// successors
///
/// ```text
Expand Down Expand Up @@ -82,7 +82,7 @@ impl<'a, 'tcx> Iterator for Preorder<'a, 'tcx> {

/// Postorder traversal of a graph.
///
/// Postorder traversal is when each node is visited after all of it's
/// Postorder traversal is when each node is visited after all of its
/// successors, except when the successor is only reachable by a back-edge
///
///
Expand Down

0 comments on commit 10fbbf6

Please sign in to comment.