1
Fork 0

Fix intra-doc link issues exposed by new macro

These links never worked, but the lint was suppressed due to the fact
that the span was pointing into the macro. With the new macro
implementation, the span now points directly to the doc comment in the
macro invocation, so it's no longer suppressed.
This commit is contained in:
Aaron Hill 2022-02-24 17:16:36 -05:00
parent 01efe6d5c2
commit 7b7b0f148c
No known key found for this signature in database
GPG key ID: B4087E510E98B164
2 changed files with 2 additions and 1 deletions

View file

@ -281,7 +281,7 @@ impl graph::WithPredecessors for CoverageGraph {
}
rustc_index::newtype_index! {
/// A node in the [control-flow graph][CFG] of CoverageGraph.
/// A node in the control-flow graph of CoverageGraph.
pub(super) struct BasicCoverageBlock {
DEBUG_FORMAT = "bcb{}",
const START_BCB = 0,