Skip to content

Commit

Permalink
Fix a few spelling mistakes
Browse files Browse the repository at this point in the history
  • Loading branch information
gorilskij committed Jan 28, 2020
1 parent ac2f3fa commit f0a7e8f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/librustc/mir/traversal.rs
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 f0a7e8f

Please sign in to comment.