Skip to content

[link-checker] Fix broken documentation link in Changelog.md - #9736

Merged
Amaury Levé (Evangelink) merged 1 commit into
mainfrom
dev/amauryleve/fix-broken-doc-links
Jul 8, 2026
Merged

[link-checker] Fix broken documentation link in Changelog.md#9736
Amaury Levé (Evangelink) merged 1 commit into
mainfrom
dev/amauryleve/fix-broken-doc-links

Conversation

@Evangelink

Copy link
Copy Markdown
Member

Summary

Fixes#9732

Corrects a malformed markdown link in docs/Changelog.md (line 1112). The link for PR #4218 used ) instead of ] to close the link text portion, making it invalid markdown and causing the link checker to flag it as broken.

  • Before: [#4218)(https://github.com/microsoft/testfx/pull/4218)
  • After: [#4218](https://github.com/microsoft/testfx/pull/4218)

All other links flagged by the daily link check were confirmed as false positives or unfixable (localhost URLs, non-existent repos/tags, NuGet firewall blocks, badge parsing artifacts).

Correct the broken link syntax for PR #4218. The original used '[#4218)(url)' instead of '[#4218](url)'.
Fixes#9732
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
CopilotAI review requested due to automatic review settings July 8, 2026 14:24

CopilotAI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR fixes a single malformed markdown link in docs/Changelog.md (line 1112). The link for PR #4218 incorrectly used ) instead of ] to close the link text, producing invalid markdown that the daily link checker flagged as broken. The correction aligns the line with the standard [#NNNN](url) format used consistently throughout the changelog (e.g., the adjacent line 1111 for #4212).

Changes:

  • Corrected the closing delimiter of the link text from ) to ] for PR #4218.
Show a summary per file
FileDescription
docs/Changelog.mdFixes the malformed markdown link syntax for PR #4218 so it renders and validates correctly.

Review details

  • Files reviewed: 1/1 changed files
  • Comments generated: 0
  • Review effort level: Medium

@github-actionsgithub-actionsBot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note

🤖 Automated review by GitHub Copilot. Generated by the Expert Code Review workflow. To request a follow-up action, reply by tagging @copilot directly.

✅ 22/22 dimensions clean — no findings.

Scope: Documentation-only fix — corrects a malformed markdown link in docs/Changelog.md (line 1112) where ) was used instead of ] to close the link text portion of [#4218](...).

@Evangelink
Amaury Levé (Evangelink) enabled auto-merge (squash) July 8, 2026 14:32
@EvangelinkAmaury Levé (Evangelink) added the state/needs-review Awaiting review from the team. label Jul 8, 2026
@Evangelink
Amaury Levé (Evangelink) merged commit 0334c91 into mainJul 8, 2026
23 checks passed
@Evangelink
Amaury Levé (Evangelink) deleted the dev/amauryleve/fix-broken-doc-links branch July 8, 2026 14:48
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

state/needs-reviewAwaiting review from the team.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

[link-checker] Fix broken documentation links

3 participants

@Evangelink@0101