Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
aName2050 committed Mar 28, 2024
1 parent 05fa7c0 commit 490cff9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ argParser.add_argument('-f', '--file', {
argParser.add_argument('--useCUDA', {
// action: 'enableCUDA',
help: 'enable CUDA for tokenization. Requires NVIDIA GPU with CUDA Cores.',
type: 'bool',
type: Boolean,
});
argParser.add_argument('--ASTOnly', {
// action: 'disableEvaluation'
help: 'disables evaluation and only outputs the AST for debugging purposes.',
type: 'bool',
type: Boolean,
});

const CLIArgs: CLIArguments = argParser.parse_args();
Expand Down

0 comments on commit 490cff9

Please sign in to comment.