Skip to content

Commit

Permalink
feature/list/formatters-in-help-command indenting formatters and remo…
Browse files Browse the repository at this point in the history
…ving extra space
  • Loading branch information
TomerPacific committed Oct 5, 2021
1 parent b422359 commit 93ae5e5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/formatter/helpers/formatters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,11 @@ const Formatters = {
const formatters = this.getFormatters()
for (const formatterName in formatters) {
concatanatedFormattersDocumentation +=
formatterName + ' : ' + formatters[formatterName].documentation + '\n'
' ' +
formatterName +
': ' +
formatters[formatterName].documentation +
'\n'
}

return concatanatedFormattersDocumentation
Expand Down

0 comments on commit 93ae5e5

Please sign in to comment.