Skip to content

Commit a9aa9de

Browse files
committed
feat: 🎸 print lists using star "*"
1 parent abba7c9 commit a9aa9de

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎src/params/CliParamHelp.ts‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ export class CliParamHelp implements CliParam {
1919
const methodLines = methods.map((m) => {
2020
const route = cli.router.get(m).type;
2121
const schema = route.getSchema();
22-
let line = `- "${m}"`;
22+
let line = `* "${m}"`;
2323
if (schema.title) line += ` - ${schema.title}`;
2424
return line;
2525
});
2626
const cmd = cli.cmd();
27-
const codecLines = [...cli.codecs.codecs.values()].map((codec) => `- "${codec.id}" - ${codec.description}`);
27+
const codecLines = [...cli.codecs.codecs.values()].map((codec) => `* "${codec.id}" - ${codec.description}`);
2828
const text = `
2929
JSON Type CLI uses request/response paradigm to execute CLI commands. Each
3030
command is identified by the <method> name. Each command receives a JSON

0 commit comments

Comments
 (0)