about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMartin Nordholts <enselic@gmail.com>2023-08-06 13:22:49 +0200
committerMartin Nordholts <enselic@gmail.com>2023-08-06 13:28:43 +0200
commitcf08888630e2c0991c636be040e8d31006d13ddb (patch)
tree9ceb31c6991f21940e5f09c82b706ccbc4ce3b55
parent11467b1c2a56bd2fd8272a7413190c814cfcba1f (diff)
downloadrust-cf08888630e2c0991c636be040e8d31006d13ddb.tar.gz
rust-cf08888630e2c0991c636be040e8d31006d13ddb.zip
linkchecker: Remove unneeded FIXME about intra-doc links
It was added by 77971 but the adder proposed in that PR that the added
code is a good fallback to have in case rustdoc gets buggy, and I agree.
So remove the FIXME.
-rw-r--r--src/tools/linkchecker/main.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/tools/linkchecker/main.rs b/src/tools/linkchecker/main.rs
index c8a370085a0..7f73cac63cb 100644
--- a/src/tools/linkchecker/main.rs
+++ b/src/tools/linkchecker/main.rs
@@ -368,7 +368,6 @@ impl Checker {
             return;
         }
         // Search for intra-doc links that rustdoc didn't warn about
-        // FIXME(#77199, 77200) Rustdoc should just warn about these directly.
         // NOTE: only looks at one line at a time; in practice this should find most links
         for (i, line) in source.lines().enumerate() {
             for broken_link in BROKEN_INTRA_DOC_LINK.captures_iter(line) {