]> git.proxmox.com Git - rustc.git/blobdiff - compiler/rustc_middle/src/mir/traversal.rs
New upstream version 1.61.0+dfsg1
[rustc.git] / compiler / rustc_middle / src / mir / traversal.rs
index 480f28620dc8fb0402484e337646cf6f3782502e..d08bede1d733447900eece1c22e6952a98f13d57 100644 (file)
@@ -5,7 +5,7 @@ use super::*;
 /// Preorder traversal of a graph.
 ///
 /// Preorder traversal is when each node is visited after at least one of its predecessors. If you
-/// are familar with some basic graph theory, then this performs a depth first search and returns
+/// are familiar with some basic graph theory, then this performs a depth first search and returns
 /// nodes in order of discovery time.
 ///
 /// ```text