Skip to content

Commit 27d0c7d

Browse files
committed
doc: use module names in stability overview table
1 parent 1af63a9 commit 27d0c7d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tools/doc/stability.mjs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ function collectStability(data) {
3232

3333
stability.push({
3434
api: mod.name,
35+
displayName: mod.textRaw,
3536
link: link,
3637
stability: mod.stability,
3738
stabilityText: `(${mod.stability}) ${mod.stabilityText}`,
@@ -47,7 +48,7 @@ function createMarkdownTable(data) {
4748
const md = ['| API | Stability |', '| --- | --------- |'];
4849

4950
for (const mod of data) {
50-
md.push(`| [${mod.api}](${mod.link}) | ${mod.stabilityText} |`);
51+
md.push(`| [${mod.displayName}](${mod.link}) | ${mod.stabilityText} |`);
5152
}
5253

5354
return md.join('\n');

0 commit comments

Comments
 (0)