Skip to content

Commit 34a684f

Browse files
authored
refactor: fix comment indicating multiple args, only one is allowed (#553)
1 parent 4911a1d commit 34a684f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/library/src/scripts/parseArguments.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export const parseArguments = async (args: string[]): Promise<ParseArgumentsResu
1414
}
1515

1616
{
17-
// tui neovim exec <command> [<args>...]
17+
// tui neovim exec <command> <args>
1818
const schema = z.tuple([z.literal("neovim"), z.literal("exec"), z.string()])
1919
const execArguments = schema.safeParse(args)
2020
if (execArguments.success) {

0 commit comments

Comments
 (0)