diff options
| author | Yuki Okushi <huyuumi.dev@gmail.com> | 2020-12-19 15:16:03 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-19 15:16:03 +0900 |
| commit | c111404cb56320100b2700c577363f48fc6ff2b1 (patch) | |
| tree | 6c48c4a48b78417ea001025743693938b4f9cd38 /compiler/rustc_data_structures/src/graph | |
| parent | 60aad47c1369e72e0ac4f297b710d2a19d2d202b (diff) | |
| parent | 35f16c60e7d3fd1b42c90a0fc084689c817345cb (diff) | |
| download | rust-c111404cb56320100b2700c577363f48fc6ff2b1.tar.gz rust-c111404cb56320100b2700c577363f48fc6ff2b1.zip | |
Rollup merge of #79612 - jyn514:compiler-links, r=Aaron1011
Switch some links in compiler/ to intra-doc links
Diffstat (limited to 'compiler/rustc_data_structures/src/graph')
| -rw-r--r-- | compiler/rustc_data_structures/src/graph/iterate/mod.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/compiler/rustc_data_structures/src/graph/iterate/mod.rs b/compiler/rustc_data_structures/src/graph/iterate/mod.rs index 1634c586316..09b91083a63 100644 --- a/compiler/rustc_data_structures/src/graph/iterate/mod.rs +++ b/compiler/rustc_data_structures/src/graph/iterate/mod.rs @@ -149,8 +149,6 @@ struct Event<N> { /// those successors), we will pop off that node's `Settled` event. /// /// [CLR]: https://en.wikipedia.org/wiki/Introduction_to_Algorithms -/// [`NodeStatus`]: ./enum.NodeStatus.html -/// [`TriColorVisitor::node_examined`]: ./trait.TriColorVisitor.html#method.node_examined pub struct TriColorDepthFirstSearch<'graph, G> where G: ?Sized + DirectedGraph + WithNumNodes + WithSuccessors, |
