Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
paularmstrong committed Dec 30, 2023
1 parent 5bea7e5 commit afcac89
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/docgen/src/markdown.ts
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ function options(cmd: Docs): Array<Node> {
html('</details>'),
// prettier is mixing tabs & spaces :(
// eslint-disable-next-line
]
]
: []),
];
}
Expand Down Expand Up @@ -207,7 +207,7 @@ function typeAndDefault(opt: Option | Positional): Array<Node> {
}
memo.push(inlineCode(`"${c}"`));
return memo;
}, [] as Array<Node>)
}, [] as Array<Node>)
: [inlineCode(opt.type)];
if (opt.default) {
nodes.push(text(', default: '), inlineCode(JSON.stringify(opt.default)));
Expand Down

0 comments on commit afcac89

Please sign in to comment.