summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Fitzgerald <fitzgen@gmail.com>2017-07-12 13:05:48 -0700
committerNick Fitzgerald <fitzgen@gmail.com>2017-07-12 13:05:48 -0700
commit3fcda71368c0f67109c8ac4031e0e1494a5b7bbc (patch)
treea9de708bc9d87ce5c8ec0b77c5631f2d8aaba313
parent104bd521010f46c5b38597df253dd7b5c357333f (diff)
Fix typos in some comments
-rw-r--r--src/ir/traversal.rs4
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.