about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDylan MacKenzie <ecstaticmorse@gmail.com>2020-09-26 17:29:55 -0700
committerDylan MacKenzie <ecstaticmorse@gmail.com>2020-09-26 17:29:55 -0700
commitc0cd1b0a26a2d1ebc82c23764f8017a30e145f58 (patch)
tree9d90ef9b86425412ea463f113a7e7a5594dd7c44
parent2364b58b870926a25e0ddc25573e345c8fe049e6 (diff)
downloadrust-c0cd1b0a26a2d1ebc82c23764f8017a30e145f58.tar.gz
rust-c0cd1b0a26a2d1ebc82c23764f8017a30e145f58.zip
Remove intra-doc link
-rw-r--r--compiler/rustc_mir/src/dataflow/framework/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_mir/src/dataflow/framework/mod.rs b/compiler/rustc_mir/src/dataflow/framework/mod.rs
index 2804a10f074..65c159e6a72 100644
--- a/compiler/rustc_mir/src/dataflow/framework/mod.rs
+++ b/compiler/rustc_mir/src/dataflow/framework/mod.rs
@@ -186,7 +186,7 @@ pub trait Analysis<'tcx>: AnalysisDomain<'tcx> {
     ///
     /// Unlike the other edge-specific effects, which are allowed to mutate `Self::Domain`
     /// directly, overriders of this method must pass a callback to
-    /// [`SwitchIntEdgeEffects::apply`]. The callback will be run once for each outgoing edge and
+    /// `SwitchIntEdgeEffects::apply`. The callback will be run once for each outgoing edge and
     /// will have access to the dataflow state that will be propagated along that edge.
     ///
     /// This interface is somewhat more complex than the other visitor-like "effect" methods.