Skip to content

Commit e9aad1a

Browse files
committed
format
1 parent d0c77c7 commit e9aad1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

repo-scripts/api-documenter/src/documenters/MarkdownDocumenter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -961,7 +961,7 @@ page_type: reference
961961
const sortedFunctionsFirstParamKeys = Object.keys(functionsRowGroup).sort(
962962
(a, b) => {
963963
if (!a || !b) {
964-
console.log(`Missing one. a:${a}, b:${b}`)
964+
console.log(`Missing one. a:${a}, b:${b}`);
965965
}
966966
if (priorityParams.includes(a) && priorityParams.includes(b)) {
967967
return priorityParams.indexOf(a) - priorityParams.indexOf(b);

0 commit comments

Comments
 (0)