Skip to content

Commit 2ae759b

Browse files
committed
format
1 parent fa534e5 commit 2ae759b

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)