summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2017-07-12 13:07:02 -0700
committerGitHub <noreply@github.com>2017-07-12 13:07:02 -0700
commitf0b343235fe14bcf24dd9ad852c0cbd7eaaefcd0 (patch)
treea9de708bc9d87ce5c8ec0b77c5631f2d8aaba313
parent104bd521010f46c5b38597df253dd7b5c357333f (diff)
parent3fcda71368c0f67109c8ac4031e0e1494a5b7bbc (diff)
Auto merge of #809 - fitzgen:typos, r=fitzgen
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.