Skip to content

Commit 88a05b4

Browse files
authored
chore: fix typo, descritpion -> description (#354)
Found via `typos --hidden --format brief`
1 parent 8315073 commit 88a05b4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/help.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,9 @@ const formatHelp = (help: string) => {
100100

101101
// command description
102102
// example command to see: neonctl projects list
103-
const descritpionBlock = consumeBlockIfMatches(lines, /^(?!.*options:)/i);
104-
if (descritpionBlock.length > 0) {
105-
result.push(...descritpionBlock);
103+
const descriptionBlock = consumeBlockIfMatches(lines, /^(?!.*options:)/i);
104+
if (descriptionBlock.length > 0) {
105+
result.push(...descriptionBlock);
106106
result.push('');
107107
}
108108

0 commit comments

Comments
 (0)