From c8c4e37f5a455cfa2f44e1643f3f17a8a899ab6c Mon Sep 17 00:00:00 2001 From: Drew T <50529377+Druthulu@users.noreply.github.com> Date: Mon, 7 Sep 2026 01:11:04 -0600 Subject: [PATCH] =?UTF-8?q?fix(phase-33):=20doc=5Flinks=20=E2=80=94=20a=20?= =?UTF-8?q?missing=20default=20document=20that=20is=20on=20the=20pending?= =?UTF-8?q?=20list=20counts=20as=20PENDING,=20not=20BROKEN=20(docs/retrosp?= =?UTF-8?q?ective.md=20until=20F2)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tools/doc_links.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tools/doc_links.py b/tools/doc_links.py index 3d48732fa..b497e411f 100644 --- a/tools/doc_links.py +++ b/tools/doc_links.py @@ -42,7 +42,10 @@ def check(files, strict): for f in files: fp = REPO / f if not fp.exists(): - broken.append((f, "", "document missing")) + if f in pend: + pend_hits.append((f, "", pend[f])) # promised by a later task, tracked + else: + broken.append((f, "", "document missing")) continue text = fp.read_text(encoding="utf-8", errors="replace") for m in LINK_RE.finditer(text):