We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6ec1aa commit 5ccdf81Copy full SHA for 5ccdf81
tools/checkLinks.ts
@@ -115,8 +115,8 @@ for (const [name, raw] of docFiles) {
115
// The changelog is unique in that each entry acts as it's own potential page,
116
// and each entry can be represented in a single page under it's own H2.
117
// This collects all potential change-log pages, and adds them to the list of
118
- // available anchors under `/change_log`.
119
- if (name.startsWith("/change_log/")) {
+ // available anchors under `/change-log`.
+ if (name.startsWith("/change-log/")) {
120
const frontmatter = raw.split("---")[1];
121
const parsedFrontmatter = yaml.load(frontmatter) as Frontmatter;
122
const title = parsedFrontmatter?.title;
0 commit comments