Rollup merge of #68619 - gorilskij:master, r=varkor
Fix a few spelling mistakes
This commit is contained in:
commit
10fbbf6fba
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
@ -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
|
||||
///
|
||||
///
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue