From c0cd1b0a26a2d1ebc82c23764f8017a30e145f58 Mon Sep 17 00:00:00 2001 From: Dylan MacKenzie Date: Sat, 26 Sep 2020 17:29:55 -0700 Subject: [PATCH] Remove intra-doc link --- compiler/rustc_mir/src/dataflow/framework/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/rustc_mir/src/dataflow/framework/mod.rs b/compiler/rustc_mir/src/dataflow/framework/mod.rs index 2804a10f074f4..65c159e6a72a9 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.