File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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 = `
2929JSON Type CLI uses request/response paradigm to execute CLI commands. Each
3030command is identified by the <method> name. Each command receives a JSON
You can’t perform that action at this time.
0 commit comments