mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-16 13:05:18 +03:00
Rollup merge of #68619 - gorilskij:master, r=varkor
Fix a few spelling mistakes
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
|
||||
/// 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 @@ fn size_hint(&self) -> (usize, Option<usize>) {
|
||||
|
||||
/// 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
|
||||
///
|
||||
///
|
||||
|
||||
Reference in New Issue
Block a user