diff options
Diffstat (limited to 'src/ir/traversal.rs')
-rw-r--r-- | src/ir/traversal.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ir/traversal.rs b/src/ir/traversal.rs index 0072e6b2..f0b7159c 100644 --- a/src/ir/traversal.rs +++ b/src/ir/traversal.rs @@ -9,7 +9,7 @@ use std::collections::{BTreeMap, VecDeque}; /// /// from --> to /// -/// The `from` is left implicit: it is the concrete `Trace` implementor which +/// The `from` is left implicit: it is the concrete `Trace` implementer which /// yielded this outgoing edge. #[derive(Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)] pub struct Edge { @@ -350,7 +350,7 @@ pub struct ItemTraversal<'ctx, 'gen, Storage, Queue, Predicate> /// The set of items that we have seen, but have yet to traverse. queue: Queue, - /// The predicate that determins which edges this traversal will follow. + /// The predicate that determines which edges this traversal will follow. predicate: Predicate, /// The item we are currently traversing. |