From 634d09dc6cc2564de66b596b54c542b656d291ea Mon Sep 17 00:00:00 2001 From: Guilherme Souza Date: Wed, 15 Jul 2026 13:52:00 -0300 Subject: [PATCH] fix(capability-matrix): correct coverage scope metric description The "Coverage scope" card said features "marked implemented/partial" but the underlying computeParity() logic only counts strictly `implemented` status, per the strict cross-SDK parity change in #63. Reword the text to match the actual logic instead of the logic. Also fix missing leading "%" to match the other metric card's style. --- scripts/capability-matrix/src/generate-site.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/capability-matrix/src/generate-site.ts b/scripts/capability-matrix/src/generate-site.ts index 1a6860c..b9685c4 100644 --- a/scripts/capability-matrix/src/generate-site.ts +++ b/scripts/capability-matrix/src/generate-site.ts @@ -462,7 +462,7 @@ export function renderHtml( Coverage scope ${pct(clamp01(parity.coverageScope))} -

Of the features marked implemented/partial in a core SDK, % that have a registered symbols list — real code evidence behind the "done" claim.

+

% of features marked implemented in a core SDK that have a registered symbols list — real code evidence behind the "done" claim.