We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8315073 commit 88a05b4Copy full SHA for 88a05b4
src/help.ts
@@ -100,9 +100,9 @@ const formatHelp = (help: string) => {
100
101
// command description
102
// example command to see: neonctl projects list
103
- const descritpionBlock = consumeBlockIfMatches(lines, /^(?!.*options:)/i);
104
- if (descritpionBlock.length > 0) {
105
- result.push(...descritpionBlock);
+ const descriptionBlock = consumeBlockIfMatches(lines, /^(?!.*options:)/i);
+ if (descriptionBlock.length > 0) {
+ result.push(...descriptionBlock);
106
result.push('');
107
}
108
0 commit comments