From efda79d4a75b2b6fb5ad96a7c67108be1631ce37 Mon Sep 17 00:00:00 2001 From: Leo Farias Date: Sat, 8 Aug 2026 17:43:54 -0400 Subject: [PATCH] docs: repair two dead documentation links Audited every external URL in the site source. Two returned 404: - mix_lint's "analysis server plugin" link pointed at dart.dev/tools/ analysis-server, which no longer exists. Now dart.dev/tools/analysis. - The Ack API reference pointed at pub.dev/documentation/ack/ack/latest/ack/, which has one path segment too many. Now pub.dev/documentation/ack/latest/. Everything else that redirects still resolves and was left alone, including the DartPad embed URLs, whose dart/flutter variants collapse to a single target when followed. --- src/content/documentation/ack/reference/api-reference.mdx | 2 +- src/content/documentation/mix/ecosystem/mix-lint.mdx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/content/documentation/ack/reference/api-reference.mdx b/src/content/documentation/ack/reference/api-reference.mdx index 902b63b1..63545140 100644 --- a/src/content/documentation/ack/reference/api-reference.mdx +++ b/src/content/documentation/ack/reference/api-reference.mdx @@ -6,7 +6,7 @@ description: Browse a quick reference for Ack's core classes, methods, and annot # API Reference This page is a curated quick reference for the core Ack classes, methods, and -annotations. Use the [generated API documentation](https://pub.dev/documentation/ack/ack/latest/ack/) +annotations. Use the [generated API documentation](https://pub.dev/documentation/ack/latest/) for every public declaration and exact signatures; use the linked guides here for explanations and examples. diff --git a/src/content/documentation/mix/ecosystem/mix-lint.mdx b/src/content/documentation/mix/ecosystem/mix-lint.mdx index 5bc66d44..b543c320 100644 --- a/src/content/documentation/mix/ecosystem/mix-lint.mdx +++ b/src/content/documentation/mix/ecosystem/mix-lint.mdx @@ -7,7 +7,7 @@ import { Callout } from "nextra/components"; # mix_lint -`mix_lint` is an [analysis server plugin](https://dart.dev/tools/analysis-server) that adds Mix-specific diagnostics to your Dart analyzer. It helps teams keep Styler chains readable, tokens reusable, and generated Styler APIs consistent. +`mix_lint` is an [analysis server plugin](https://dart.dev/tools/analysis) that adds Mix-specific diagnostics to your Dart analyzer. It helps teams keep Styler chains readable, tokens reusable, and generated Styler APIs consistent. ## Why use it