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 6321c9c commit ac6aa51Copy full SHA for ac6aa51
migrate/update-migrate-progress.ts
@@ -47,7 +47,7 @@ function generateUrls(
47
function generateMarkdown(status: EntryStatus): string {
48
const { entry, migrated, cpprefUrl, cppdocUrl, issueUrl } = status;
49
if (migrated) {
50
- return `| ✅ | [cppref](${cpprefUrl}) | [cppdoc](${cppdocUrl}) | \`${entry.cppdoc ?? (entry.cppref + "(cppref)")}\` | `;
+ return `| ✅ | [cppref](${cpprefUrl}) | [cppdoc](${cppdocUrl}) | \`${entry.cppdoc ?? entry.cppref + "(cppref)"}\` | `;
51
} else {
52
return `| ❌ | [cppref](${cpprefUrl}) | ${
53
entry.cppdoc ? `[create](${issueUrl})` : "N/A"
0 commit comments