We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0c77c7 commit e9aad1aCopy full SHA for e9aad1a
repo-scripts/api-documenter/src/documenters/MarkdownDocumenter.ts
@@ -961,7 +961,7 @@ page_type: reference
961
const sortedFunctionsFirstParamKeys = Object.keys(functionsRowGroup).sort(
962
(a, b) => {
963
if (!a || !b) {
964
- console.log(`Missing one. a:${a}, b:${b}`)
+ console.log(`Missing one. a:${a}, b:${b}`);
965
}
966
if (priorityParams.includes(a) && priorityParams.includes(b)) {
967
return priorityParams.indexOf(a) - priorityParams.indexOf(b);
0 commit comments