about summary refs log tree commit diff
path: root/src/librustc_data_structures
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2020-07-03 17:16:59 -0700
committerGitHub <noreply@github.com>2020-07-03 17:16:59 -0700
commitd46de1052d3edcc6538adf6d5fc8f87ab6fcf209 (patch)
tree6a2124cb5880aedec0a466a4e9e88554295a3b80 /src/librustc_data_structures
parent6339abd338607ab1513899f11303ced1a7c3d57f (diff)
parentbdc1f40fcd7be14dde6f94ae5392039a72517eb7 (diff)
downloadrust-d46de1052d3edcc6538adf6d5fc8f87ab6fcf209.tar.gz
rust-d46de1052d3edcc6538adf6d5fc8f87ab6fcf209.zip
Rollup merge of #73881 - pierwill:pierwill-citations, r=jonas-schievink
Standardize bibliographic citations in rustc API docs

See #73877.
Diffstat (limited to 'src/librustc_data_structures')
-rw-r--r--src/librustc_data_structures/graph/dominators/mod.rs11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/librustc_data_structures/graph/dominators/mod.rs b/src/librustc_data_structures/graph/dominators/mod.rs
index a7f9340dead..438a0d0c6ff 100644
--- a/src/librustc_data_structures/graph/dominators/mod.rs
+++ b/src/librustc_data_structures/graph/dominators/mod.rs
@@ -1,8 +1,9 @@
-//! Algorithm citation:
-//! A Simple, Fast Dominance Algorithm.
-//! Keith D. Cooper, Timothy J. Harvey, and Ken Kennedy
-//! Rice Computer Science TS-06-33870
-//! <https://www.cs.rice.edu/~keith/EMBED/dom.pdf>
+//! Finding the dominators in a control-flow graph.
+//!
+//! Algorithm based on Keith D. Cooper, Timothy J. Harvey, and Ken Kennedy,
+//! "A Simple, Fast Dominance Algorithm",
+//! Rice Computer Science TS-06-33870,
+//! <https://www.cs.rice.edu/~keith/EMBED/dom.pdf>.
 
 use super::iterate::reverse_post_order;
 use super::ControlFlowGraph;