Skip to content

Commit f542163

Browse files
authored
Rollup merge of #114539 - Enselic:unneeded-fixme, r=ehuss
linkchecker: Remove unneeded FIXME about intra-doc links It was added by #77971 but the adder [proposed](#77971 (comment)) that the added code is a good fallback to have in case rustdoc gets buggy, and I agree. So remove the FIXME. This PR is part of #44366 which is E-help-wanted. r? `@jyn514` since you added the FIXME `@rustbot` label T-dev-tools
2 parents 0c98f15 + cf08888 commit f542163

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/tools/linkchecker/main.rs

-1
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,6 @@ impl Checker {
368368
return;
369369
}
370370
// Search for intra-doc links that rustdoc didn't warn about
371-
// FIXME(#77199, 77200) Rustdoc should just warn about these directly.
372371
// NOTE: only looks at one line at a time; in practice this should find most links
373372
for (i, line) in source.lines().enumerate() {
374373
for broken_link in BROKEN_INTRA_DOC_LINK.captures_iter(line) {

0 commit comments

Comments
 (0)