Skip to content

Commit

Permalink
fix: incorporate missing spaces in 'list command' help text (#157)
Browse files Browse the repository at this point in the history
  • Loading branch information
dec0dOS committed Dec 31, 2023
1 parent 04f6652 commit f68b238
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/commands/list.ts
Expand Up @@ -27,10 +27,10 @@ export class ListCommand extends BaseCommand {
static description: string = 'View list of available commands'
static help = [
'The list command displays a list of all the commands:',
' {{ binaryName }}list',
' {{ binaryName }} list',
'',
'You can also display the commands for a specific namespace:',
' {{ binaryName }}list <namespace...>',
' {{ binaryName }} list <namespace...>',
]

/**
Expand Down
4 changes: 2 additions & 2 deletions tests/commands/list.spec.ts
Expand Up @@ -251,10 +251,10 @@ test.group('List command', () => {
description: 'View list of available commands',
help: [
'The list command displays a list of all the commands:',
' {{ binaryName }}list',
' {{ binaryName }} list',
'',
'You can also display the commands for a specific namespace:',
' {{ binaryName }}list <namespace...>',
' {{ binaryName }} list <namespace...>',
],
namespace: null,
aliases: [],
Expand Down

0 comments on commit f68b238

Please sign in to comment.